diff options
| author | garret1317 <garret@airmail.cc> | 2025-11-07 01:39:58 +0000 |
|---|---|---|
| committer | garret1317 <garret@airmail.cc> | 2025-11-07 01:39:58 +0000 |
| commit | 1eaf54d25c333d1303756c6bade19f38befee6d0 (patch) | |
| tree | c792df1c21e45bed5a0e7ee20960ff64ebe0dc88 /yt_dlp_plugins/extractor | |
| parent | ca6531cc800c209533cd9ebea9544e892c2c12e0 (diff) | |
| download | yt-dlp-rajiko-1eaf54d25c333d1303756c6bade19f38befee6d0.tar.gz yt-dlp-rajiko-1eaf54d25c333d1303756c6bade19f38befee6d0.tar.bz2 yt-dlp-rajiko-1eaf54d25c333d1303756c6bade19f38befee6d0.zip | |
mark chunked formats as from_start
so that you can interrupt and resume where you left off like normal
Diffstat (limited to 'yt_dlp_plugins/extractor')
| -rw-r--r-- | yt_dlp_plugins/extractor/radiko.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/yt_dlp_plugins/extractor/radiko.py b/yt_dlp_plugins/extractor/radiko.py index dadde05..e91422e 100644 --- a/yt_dlp_plugins/extractor/radiko.py +++ b/yt_dlp_plugins/extractor/radiko.py @@ -335,7 +335,7 @@ class _RadikoBaseIE(InfoExtractor): # fallback to live for ffmpeg etc "url": first_chunk, "http_headers": auth_headers, - "is_live": "yesn't", + "is_from_start": True, }] format_note.append("Chunked") |