Hello,
i'm totally new but i will try to explain what i wanna ty to do. I would like to download a streaming video from a video site.
Wheni connect and i open the video the browser load a file:
The structure of the file is the following:HTML Code:chunklist.m3u8
In witch way i can let ffmpeg download and connect all TS files ?HTML Code:#EXTM3U #EXT-X-VERSION:3 #EXT-X-TARGETDURATION:14 #EXT-X-MEDIA-SEQUENCE:0 #EXTINF:11.12, media_b645120_0.ts?token=76bd24db5bb8dea255157a4b3b30db57&time=56df216e #EXTINF:9.88, media_b645120_1.ts?token=76bd24db5bb8dea255157a4b3b30db57&time=56df216e #EXTINF:10.72, media_b645120_2.ts?token=76bd24db5bb8dea255157a4b3b30db57&time=56df216e #EXTINF:12.0, media_b645120_3.ts?token=76bd24db5bb8dea255157a4b3b30db57&time=56df216e #EXTINF:13.0, media_b645120_4.ts?token=76bd24db5bb8dea255157a4b3b30db57&time=56df216e
Thanks for any help
+ Reply to Thread
Results 1 to 2 of 2
-
-
Basic syntax is
Just need to make sure that the m3u8 has full paths and the tokens are still valid. Best way to ensure that is to reference the playlist on site i.e.Code:ffmpeg -i chunklist.m3u8 -c copy video.ts
Code:ffmpeg -i http://site/path/to/chunklist.m3u8 -c copy video.ts
Similar Threads
-
Re:Video Streaming in mvc site
By premkumar in forum Video Streaming DownloadingReplies: 2Last Post: 17th Oct 2014, 05:43 -
Need help trying to download a video from a Chinese streaming site
By Duskre in forum Video Streaming DownloadingReplies: 3Last Post: 28th Apr 2014, 06:29 -
Can I play streaming video through this site through WD TV Live??
By RBCC in forum Video Streaming DownloadingReplies: 2Last Post: 26th Mar 2013, 17:56 -
Capturing from a streaming site...Is the sticky UTD?
By nzdreamer55 in forum Video Streaming DownloadingReplies: 0Last Post: 12th Mar 2013, 11:52 -
Streaming video from this site, which software will work?
By kentuckynet in forum Video Streaming DownloadingReplies: 18Last Post: 13th Jan 2012, 14:32


Quote