Hello! sorry if I repeating old questions, I just learned to used ffmpeg to save this HLS video from:
culturebox.francetvinfo.fr/live/danse/le-palais-de-cristal-par-georges-balanchine-157321
this is the command that I use to get the file:
My question is this the correct command to get the highest video quality? And could you help me to point out where will ffmpeg save the video once it's finished downloading. Sorry for sounding so stupid but this is very new to me. Thanks!Code:ffmpeg -i "http://ftvodhdsecz-f.akamaihd.net/i/streaming-adaptatif/evt/pf-culture/2014/06/21895-20140603-64-,398,632,934,2176,k.mp4.csmil/index_2_av.m3u8" Vid.ts"]ffmpeg -i "http://ftvodhdsecz-f.akamaihd.net/i/streaming-adaptatif/evt/pf-culture/2014/06/21895-20140603-64-,398,632,934,2176,k.mp4.csmil/index_2_av.m3u8" Vid.ts
*edit: found the result video (it was saved on C: ) but the quality is low instead of the HD one on the web, if anyone can show me the correct command please help
+ Reply to Thread
Results 1 to 4 of 4
Thread
-
Last edited by aliv; 11th Jun 2014 at 05:06.
-
1280x720
Code:ffmpeg -i "http://ftvodhdsecz-f.akamaihd.net/i/streaming-adaptatif/evt/pf-culture/2014/06/21895-20140603-64-,398,632,934,2176,k.mp4.csmil/index_3_av.m3u8" -c copy video.ts
-
Hi ,
@aliv : for the different streams , change the end of the link
Quality 398 => "index_0_av.m3u8"
Quality 632 => "index_1_av.m3u8"
Quality 934 => "index_2_av.m3u8"
Quality 2176 => "index_3_av.m3u8"
Regards . -
Dear CristianoA and aazerty, thank you very much for your help!