VideoHelp Forum




+ Reply to Thread
Results 1 to 6 of 6
  1. youtube-dl works for that video.

    Code:
    youtube-dl https://www.france.tv/france-o/journal-reunion/803455-journal-reunion.html
    Quote Quote  
  2. I was able to download the video with Tubedigger, but when I tried to download with youtube-dl, the audio and video are separate. I downloaded the audio, and then downloaded the video (checked with vlc, both files seemed to play ok), but when I used ffmpeg to mux, the resulting video would only play for a short while and then stop. I also downloaded the audio and video together with youtube-dl, but same problem; the resulting video would only play for a while and then stop. Here is the code that I used to download the audio and video together, but the resulting file would not play correctly.
    youtube-dl -f hls_v5_os-879+hls_v5_os-audio-aacl-64-Audio_Français https://www.france.tv/france-o/journal-reunion/803455-journal-reunion.html
    Mega link to video (from Tubedigger):
    https://mega.nz/#!tTQyyKbY!_lBr_NA9cXkBEAJK0jovk8SFogZycrwXxTijvjX_siM
    Last edited by jimdagys; 4th Dec 2018 at 08:14.
    Quote Quote  
  3. You can also try Captvty. France Ô is the 20th channel in the list on the left. Today (December 7th) the list goes back to October 13th.
    It downloads as TS, but you can easily convert to MP4 or MKV afterwards (“Conversion” tab – it simply uses the included MKVMerge and MP4Box). By default it downloads at the highest available resolution, which is here 1024x576.

    Otherwise, opening the page with Firefox and DownloadHelper, I can get working video & audio m3u8 links (don't try downloading directly with Download Helper, which will ask you to download a “companion application” – most likely based on ffmpeg – and might fail anyway, just click on the DH icon to display the list of streams it found, then hover over the right edge for the wanted stream to display a small arrow, click on that arrow to display a drop-down menu, and click on “copy URL” / alternatively : activate the Web console before loading the page, wait until the video starts playing, then filter the results with “m3u8” and copy the links, but here they won't be identified with their type/resolution/bitrate), downloading directly with ffmpeg seems to work fine :
    Code:
    ffmpeg -i "https://cloudreplayfrancetv.akamaized.net/04ad873d2efb5/193346280_monde_TA.ism/ZXhwPTE1NDQyMjI2NzF+YWNsPSUyZjA0YWQ4NzNkMmVmYjUlMmYxOTMzNDYyODBfbW9uZGVfVEEuaXNtKn5obWFjPTkzYWM2MGQ5NDViYTU1ZmZkZDQ0NWNjMzhmODA2YWQyZTk1MjJkZGUyODE4NDQ4YTc2MjBiYzYxOWVlODczZmQ=/193346280_monde_TA-video=1404000.m3u8" -i "https://cloudreplayfrancetv.akamaized.net/04ad873d2efb5/193346280_monde_TA.ism/ZXhwPTE1NDQyMjI2NzF+YWNsPSUyZjA0YWQ4NzNkMmVmYjUlMmYxOTMzNDYyODBfbW9uZGVfVEEuaXNtKn5obWFjPTkzYWM2MGQ5NDViYTU1ZmZkZDQ0NWNjMzhmODA2YWQyZTk1MjJkZGUyODE4NDQ4YTc2MjBiYzYxOWVlODczZmQ=/193346280_monde_TA-audio_fre=64000.m3u8" -c:v copy -c:a copy "H:\test FranceO.mp4"
    Does anyone know what the “keyframes” lines are for in the “master.m3u8” playlist ?

    Code:
    #EXTM3U
    #EXT-X-VERSION:5
    ## Created with Unified Streaming Platform(version=1.8.3)
    #EXT-X-SESSION-KEY:METHOD=AES-128,URI="https://cloudreplayfrancetv.akamaized.net/keys/crypt.key"
    
    # AUDIO groups
    #EXT-X-MEDIA:TYPE=AUDIO,GROUP-ID="audio-aacl-64",NAME="Audio Français",LANGUAGE="fr",AUTOSELECT=YES,DEFAULT=YES,CHANNELS="2",URI="193346280_monde_TA-audio_fre=64000.m3u8"
    
    # variants
    #EXT-X-STREAM-INF:BANDWIDTH=190000,CODECS="mp4a.40.2,avc1.42C01E",RESOLUTION=256x144,FRAME-RATE=25,AUDIO="audio-aacl-64",CLOSED-CAPTIONS=NONE
    193346280_monde_TA-video=118000.m3u8
    #EXT-X-STREAM-INF:BANDWIDTH=320000,CODECS="mp4a.40.2,avc1.42C01E",RESOLUTION=320x180,FRAME-RATE=25,AUDIO="audio-aacl-64",CLOSED-CAPTIONS=NONE
    193346280_monde_TA-video=240000.m3u8
    #EXT-X-STREAM-INF:BANDWIDTH=608000,CODECS="mp4a.40.2,avc1.42C01E",RESOLUTION=512x288,FRAME-RATE=25,AUDIO="audio-aacl-64",CLOSED-CAPTIONS=NONE
    193346280_monde_TA-video=512000.m3u8
    #EXT-X-STREAM-INF:BANDWIDTH=879000,CODECS="mp4a.40.2,avc1.4D401F",RESOLUTION=704x396,FRAME-RATE=25,AUDIO="audio-aacl-64",CLOSED-CAPTIONS=NONE
    193346280_monde_TA-video=768000.m3u8
    #EXT-X-STREAM-INF:BANDWIDTH=1553000,CODECS="mp4a.40.2,avc1.4D401F",RESOLUTION=1024x576,FRAME-RATE=25,AUDIO="audio-aacl-64",CLOSED-CAPTIONS=NONE
    193346280_monde_TA-video=1404000.m3u8
    
    # keyframes
    #EXT-X-I-FRAME-STREAM-INF:BANDWIDTH=16000,CODECS="avc1.42C01E",RESOLUTION=256x144,URI="keyframes/193346280_monde_TA-video=118000.m3u8"
    #EXT-X-I-FRAME-STREAM-INF:BANDWIDTH=32000,CODECS="avc1.42C01E",RESOLUTION=320x180,URI="keyframes/193346280_monde_TA-video=240000.m3u8"
    #EXT-X-I-FRAME-STREAM-INF:BANDWIDTH=68000,CODECS="avc1.42C01E",RESOLUTION=512x288,URI="keyframes/193346280_monde_TA-video=512000.m3u8"
    #EXT-X-I-FRAME-STREAM-INF:BANDWIDTH=102000,CODECS="avc1.4D401F",RESOLUTION=704x396,URI="keyframes/193346280_monde_TA-video=768000.m3u8"
    #EXT-X-I-FRAME-STREAM-INF:BANDWIDTH=187000,CODECS="avc1.4D401F",RESOLUTION=1024x576,URI="keyframes/193346280_monde_TA-video=1404000.m3u8"
    And JDownloader probably works too... really thorough and regularly updated, but a bit of an “usine à gaz” !
    Quote Quote  
  4. Bonjour ,

    Mon fichier batch sous XP :
    Code:
    @echo on
    
    set "ua=Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.9) Gecko/20100101 Firefox/52.9.0"
    "...\livecli.exe" --http-header "User-Agent=%ua%" --http-no-ssl-verify --http-header "Referer=https://staticftv-a.akamaihd.net/player/bower_components/player_flash/dist/FranceTVNVPVFlashPlayer.anevia-2160fa66cd7d90d36d5857380dd7f849.swf" "hlsvariant://https://cloudreplayfrancetv.akamaized.net/04ad873d2efb5/193346280_monde_TA.ism/ZXhwPTE1NDQyNDExNjF+YWNsPSUyZjA0YWQ4NzNkMmVmYjUlMmYxOTMzNDYyODBfbW9uZGVfVEEuaXNtKn5obWFjPWY2N2ZiMDEwODM5YzAyOWM3NzAxNzk5NTk4ZTIzZjM0NTJjZTM1Y2E0ZmMwMTJhMzFiYzUzMGZhMmYwZjAzNGE=/193346280_monde_TA-video=512000.m3u8" best -o vid.mp4
    pause
    "...\livecli.exe" --http-header "User-Agent=
    %" --http-no-ssl-verify --http-header "Referer=https://staticftv-a.akamaihd.net/player/bower_components/player_flash/dist/FranceTVNVPVFlashPlayer.anevia-2160fa66cd7d90d36d5857380dd7f849.swf" "hlsvariant://https://cloudreplayfrancetv.akamaized.net/04ad873d2efb5/193346280_monde_TA.ism/ZXhwPTE1NDQyNDExNjF+YWNsPSUyZjA0YWQ4NzNkMmVmYjUlMmYxOTMzNDYyODBfbW9uZGVfVEEuaXNtKn5obWFjPWY2N2ZiMDEwODM5YzAyOWM3NzAxNzk5NTk4ZTIzZjM0NTJjZTM1Y2E0ZmMwMTJhMzFiYzUzMGZhMmYwZjAzNGE=/193346280_monde_TA-audio_fre=64000.m3u8" best -o aud.aac
    pause
    "...\ffmpeg.exe" -i vid.mp4 -i aud.aac -c:v libx264 -bsf:a aac_adtstoasc Vid-Aud_complet.mp4
    pause
    
    :fin
    NB:
    _ on peut remplacer 'livecli.exe' par 'streamlink.exe'
    _ indiquer l'emplacement en lieu et place de ...\
    _ on peut changer les paramètres '-video... ..m3u8' par '-video=768000.m3u8' ou 'video=1404000.m3u8'

    Ne pas s'affoler lors de la récup finale 'Vid-Aud_complet.mp4' .
    C'est long !
    Légère désynchronisation .

    A+ .
    JE SUIS CHARLIE !!!
    Quote Quote  
  5. ...sous XP :


    C'est long !
    Légère désynchronisation .
    C'est long parce qu'il y a recompression... et désynchronisé entre autres pour la même raison (même si c'est anormal en soi).
    Avec “c:v copy” les deux problèmes seraient résolus, et il n'y aurait aucune perte de qualité (sachant que la qualité d'origine n'est déjà pas formidable).

    Au passage, ceci est un forum anglophone...

    JE SUIS CHARLIE !!!
    Heeey Chaaarliiie wake up ! Yeaaah Chaaarliiie, it'll be an adveeeenture !

    Click image for larger version

Name:	Charlie the unicorn 1 vostfr - 00_00_07 -2018-12-08-13h30m32s640.png
Views:	132
Size:	288.2 KB
ID:	47420
    Last edited by abolibibelot; 8th Dec 2018 at 06:31.
    Quote Quote  



Similar Threads

Visit our sponsor! Try DVDFab and backup Blu-rays!