I've been using yt-dlp to occasionally download live streams. Some sources need --live-from-start, other start from the beginning because that's how the playlist is.
Something I've been trying to figure out is that if the stream is still ongoing when I start the download, yt-dlp usually downloads until the time point that I started, but no further.
I'm aware that the .m3u8 file gets update as the stream goes on, but yt-dlp never seems to check for additional frags (at least by default).
If I'm using something like this:
Is there something I can add to get yt-dlp to re-check the m3u8 file when it reaches the last fragment? Would ffmpeg work better?Code:yt-dlp --no-part --restrict-filenames --live-from-start "(streamlink).m3u8" -o "livestream.mp4"
+ Reply to Thread
Results 1 to 2 of 2
-
Last edited by doctorm; 16th May 2023 at 12:50.
-
So at the moment, what works is using ffmpeg to start downloading from the current time until the end and yt-dlp to download from start to current time with running both simultaneously.
Code:yt-dlp.exe "%stream%" -o "D:\Part1.mp4"
Code:ffmpeg.exe -i "%stream%" -c copy -bsf:a aac_adtstoasc "D:\Part2.mp4"
Similar Threads
-
How to fix the download failure with yt-dlp command for some live M3U8 link
By zydjohn in forum Video Streaming DownloadingReplies: 12Last Post: 26th Nov 2021, 14:35 -
download live m3u8 stream from 247stream website
By grabyea in forum Video Streaming DownloadingReplies: 0Last Post: 12th Oct 2021, 15:37 -
Streaming mp4 File live in m3u8 playlist
By thegeek in forum Video Streaming DownloadingReplies: 1Last Post: 9th Oct 2021, 08:04 -
please help me download m3u8 playlist from mytvsuper.com
By nam2868 in forum Video Streaming DownloadingReplies: 6Last Post: 24th Oct 2018, 06:59 -
How do I download AES encrypted m3u8 playlist files
By shraman in forum Video Streaming DownloadingReplies: 2Last Post: 23rd Jul 2018, 09:49