4623 shaares
397 liens privés
397 liens privés
[bfmtv][brightcove] A valid ID was not sent for this player · Issue #13912 · rg3/youtube-dl · GitHub
Astuce maison pour récupérer des vidéos brightcove BFMTV malgré ce bug:
# Get the URL of the brightcove playlist and download it
wget "http://c.brightcove.com/services/mobile/streaming/index/rendition.m3u8?assetId=5675829860001&pubId=5132998232001&videoId=5675822746001" -O playlist.txt
# Download each file from the playlist
cat playlist.txt
wget "http://hlsbfm-a.akamaihd.net/5132998232001/5675829860001/5132998232001_5675829860001_s-1.ts?pubId=5132998232001&videoId=5675822746001" -O 1.mp4
...
# Concatenate previously downloaded video files
ffmpeg -i "concat:1.mp4|2.mp4|3.mp4|4.mp4|5.mp4" -c copy -bsf:a aac_adtstoasc BFMTV.mp4