Hello, here is the link https://www.france.tv/france-o/journal-reunion/803455-journal-reunion.html
can someone help me?
+ Reply to Thread
Results 1 to 6 of 6
-
-
youtube-dl works for that video.
Code:youtube-dl https://www.france.tv/france-o/journal-reunion/803455-journal-reunion.html
-
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
https://mega.nz/#!tTQyyKbY!_lBr_NA9cXkBEAJK0jovk8SFogZycrwXxTijvjX_siMLast edited by jimdagys; 4th Dec 2018 at 08:14.
-
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"
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"
-
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
_ 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 !!! -
...sous XP :
C'est long !
Légère désynchronisation .
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 !!!
Last edited by abolibibelot; 8th Dec 2018 at 06:31.
Similar Threads
-
pls help me to download mp7 files
By ksai.mb in forum Video Streaming DownloadingReplies: 1Last Post: 6th Jun 2018, 16:32 -
[help] pls introduce some best video MUX tools to me. (not re-encode video)
By truston in forum Video ConversionReplies: 4Last Post: 11th Mar 2017, 06:22 -
Could someone pls rip a CBS News video?
By brunaperry in forum Video Streaming DownloadingReplies: 25Last Post: 17th Dec 2014, 14:13 -
how to join video files pls ?
By erzane in forum Newbie / General discussionsReplies: 30Last Post: 16th Sep 2014, 14:01 -
Need Video Content Editor Pls...
By mohansliit in forum EditingReplies: 6Last Post: 6th Feb 2014, 11:34