Issued resolved. Thanks for all that helped.
+ Reply to Thread
Results 1 to 29 of 29
-
Last edited by monsterbubble; 2nd Mar 2020 at 18:34.
-
hi, open with notepaq ...
#EXTM3U
#EXT-X-VERSION:4
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=717742,CODECS="avc1.4D401E,mp4a.40. 2",RESOLUTION=384x216,AVERAGE-BANDWIDTH=351729,FRAME-RATE=29.97
http://seamless.mtvnservices.com/api/mgid:arc:episode:vh1.com:e5c08d6c-8b87-11e6-bfd4-...3u8?proxy=true
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=1111150,CODECS="avc1.4D401F,mp4a.40 .2",RESOLUTION=512x288,AVERAGE-BANDWIDTH=547685,FRAME-RATE=29.97
http://seamless.mtvnservices.com/api/mgid:arc:episode:vh1.com:e5c08d6c-8b87-11e6-bfd4-...3u8?proxy=true
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=2021756,CODECS="avc1.4D401F,mp4a.40 .2",RESOLUTION=640x360,AVERAGE-BANDWIDTH=1011062,FRAME-RATE=29.97
http://seamless.mtvnservices.com/api/mgid:arc:episode:vh1.com:e5c08d6c-8b87-11e6-bfd4-...3u8?proxy=true
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=2551846,CODECS="avc1.4D401F,mp4a.40 .2",RESOLUTION=768x432,AVERAGE-BANDWIDTH=1340673,FRAME-RATE=29.97
http://seamless.mtvnservices.com/api/mgid:arc:episode:vh1.com:e5c08d6c-8b87-11e6-bfd4-...3u8?proxy=true
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=3864412,CODECS="avc1.4D401F,mp4a.40 .2",RESOLUTION=960x540,AVERAGE-BANDWIDTH=2019093,FRAME-RATE=29.97
http://seamless.mtvnservices.com/api/mgid:arc:episode:vh1.com:e5c08d6c-8b87-11e6-bfd4-...3u8?proxy=true
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=6174300,CODECS="avc1.640028,mp4a.40 .2",RESOLUTION=1280x720,AVERAGE-BANDWIDTH=3062204,FRAME-RATE=29.97
http://seamless.mtvnservices.com/api/mgid:arc:episode:vh1.com:e5c08d6c-8b87-11e6-bfd4-...3u8?proxy=true
#EXT-X-STREAM-INF:PROGRAM-ID=1,BANDWIDTH=10651116,CODECS="avc1.640028,mp4a.4 0.2",RESOLUTION=1920x1080,AVERAGE-BANDWIDTH=5229441,FRAME-RATE=29.97
http://seamless.mtvnservices.com/api/mgid:arc:episode:vh1.com:e5c08d6c-8b87-11e6-bfd4-...3u8?proxy=true -
-
Use one of those link with ffmpeg.
Code:ffmpeg -i http://seamless.mtvnservices.com/api/mgid:arc:episode:vh1.com:e5c08d6c-8b87-11e6-bfd4-0026b9414f30/5a571a1b-cc4c-4bc5-b0a2-caf5aa1647a1/384x216_293/playlist.m3u8?proxy=true -codec copy output.ts
Code:youtube-dl http://seamless.mtvnservices.com/api/mgid:arc:episode:vh1.com:e5c08d6c-8b87-11e6-bfd4-0026b9414f30/5a571a1b-cc4c-4bc5-b0a2-caf5aa1647a1/384x216_293/playlist.m3u8
-
Viacom seamless hls playlists should be avoided since they contain interspersed ad segments of varying and disparate quality compared to the content.
This works fine in an online hls player, but not as much for a continuous video file.
If nothing but the seamless playlist is available, the best solution for downloading is to edit a local copy of the playlist into separate playlists for each "act" of content (and discard all of the ad blocks). After each act is downloaded into a separate file, they can be joined if desired. -
I aborted the downloads after a bit and didn't notice that they would choke after a while. Ponens is right -- if you download the m3u8 file you'll see the segments, each with a new decryption key. I guess the downloaders can't handle that automatically yet.
-
-
What about this?
Code:https://keysvc.mtvnservices.com:443/get/encrypt.key?acl=gsp.alias/mediabus/vh1.com/2018/12/28/04/19/21/8f107820313643f8ae3492c7142d9a85/1447860/0&tk=st=1582995491~exp=1583017091~acl=/get/encrypt.key?acl=gsp.alias/mediabus/vh1.com/2018/12/28/04/19/21/8f107820313643f8ae3492c7142d9a85/1447860/0*~hmac=4b9c1a21332d2580ad8c2802a330d2f96810e89ab16e9fcb8108ad7f51f73a3c
-
As mentioned in post #6, the best way to download a seamless playlist is to edit the playlist and use it locally.
For this video, here is an example of how to edit the playlist: e5c08d6c-8b87-11e6-bfd4-0026b9414f30.zip
Copy ffmpeg into the same folder with the edited playlists. Then run ffmpeg for each edited playlist;
Code:ffmpeg.exe -allowed_extensions ALL -protocol_whitelist "file,http,https,tcp,tls,crypto" -i "act1.m3u8" -c copy "act1.ts" ffmpeg.exe -allowed_extensions ALL -protocol_whitelist "file,http,https,tcp,tls,crypto" -i "act2.m3u8" -c copy "act2.ts" and so on, through act9
-
-
Okay so i get the editing playlist part but can you run down how to download the playlist with ffmpeg. Do i copy what you just coded? "allowed_extensions ALL -protocol_whitelist "file,http,https,tcp,tls,crypto" Feel free to message me if you don't want to explain it public.
-
Sorry. I get the editing the playlist part. When it comes to downloading the "acts" do i just copy and paste this "-allowed_extensions ALL -protocol_whitelist "file,http,https,tcp,tls,crypto" -i "act1.m3u8" -c copy "act1.ts" after copy and pasting ffmpeg on the same folder?
-
I've tested out the example one you sent but it's coming out wrong.
[Attachment 52199 - Click to enlarge] -
I'm out of ideas. It looks like maybe you didn't extract all of the files from the zip into the same folder, or that you aren't running the command prompt within the folder that contains all those files. Can't say for sure, but you probably should abandon any further attempts at this method.
-
to test use this (works for me):
Code:ffplay -infbuf -user_agent "Mozilla/5.0 (Android 4.0)" -i http://seamless.mtvnservices.com/api/mgid:arc:episode:vh1.com:e5c08d6c-8b87-11e6-bfd4-0026b9414f30/607e4aa7-f47a-4f14-b85a-7fbd1731f93d/1280x720_3020/playlist.m3u8
-
-
I was able to download the entire video using Streamlink and ventoux's URL. I didn't even need the user-agent string:
Code:streamlink "http://seamless.mtvnservices.com/api/mgid:arc:episode:vh1.com:e5c08d6c-8b87-11e6-bfd4-0026b9414f30/607e4aa7-f47a-4f14-b85a-7fbd1731f93d/1280x720_3020/playlist.m3u8" best -o output.mp4
Code:ffmpeg -i output.mp4 -codec copy output.mkv
-
-
Similar Threads
-
please help downloading m3u8 file - jawwy.tv
By karim1987 in forum Video Streaming DownloadingReplies: 1Last Post: 25th Dec 2019, 13:44 -
please help downloading m3u8 file
By karim1987 in forum Video Streaming DownloadingReplies: 7Last Post: 25th Nov 2019, 17:11 -
Downloading AES-128 encrypted m3u8 file
By achy635 in forum Video Streaming DownloadingReplies: 6Last Post: 28th Aug 2019, 23:51 -
Help Downloading a m3u8 file with ffmpeg
By nerdsmurf in forum Video Streaming DownloadingReplies: 4Last Post: 19th Jun 2017, 14:56 -
Help downloading a m3u8 file starting at a specific segment.
By qwerty480 in forum Video Streaming DownloadingReplies: 1Last Post: 2nd Sep 2016, 00:35