I have a bunch of m3u8 links that I am trying to download.
When I use ffmpeg, I get an average of 8/10 videos. The remaining 2 videos simply don't download. I use this command:
ffmpeg -i http://.../playlist.m3u8 -c copy -bsf:a aac_adtstoasc output.mp4
I have seen suggestions to use yt-dlp and aria2c to reduce the number of failures. Do either of these actually affect failure rates?
Would you suggest using:
yt-dlp M3U8LINK
OR
yt-dlp --downloader aria2c M3U8LINK
IF NOT, WHAT COMMAND DECREASES THE NUMBER OF FAILURES? Thanks.