diff options
author | garret1317 <garret@airmail.cc> | 2025-09-14 15:17:26 +0100 |
---|---|---|
committer | garret1317 <garret@airmail.cc> | 2025-09-14 15:17:26 +0100 |
commit | bcb5df38d71f2b6d2092797201ad62638b6d3ef0 (patch) | |
tree | bcce98f4b9abbe939d9ae9f37df8b8aee34c3d58 /yt_dlp_plugins/extractor/radiko.py | |
parent | f3a16083b9f09c132dce6f262a1fb30f672b9441 (diff) | |
download | yt-dlp-rajiko-bcb5df38d71f2b6d2092797201ad62638b6d3ef0.tar.gz yt-dlp-rajiko-bcb5df38d71f2b6d2092797201ad62638b6d3ef0.tar.bz2 yt-dlp-rajiko-bcb5df38d71f2b6d2092797201ad62638b6d3ef0.zip |
disable stream blacklist for live
ref https://github.com/garret1317/yt-dlp-rajiko/issues/29#issuecomment-3289577318
github issue #29
Diffstat (limited to 'yt_dlp_plugins/extractor/radiko.py')
-rw-r--r-- | yt_dlp_plugins/extractor/radiko.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/yt_dlp_plugins/extractor/radiko.py b/yt_dlp_plugins/extractor/radiko.py index 5bda1de..ad5c77f 100644 --- a/yt_dlp_plugins/extractor/radiko.py +++ b/yt_dlp_plugins/extractor/radiko.py @@ -302,7 +302,9 @@ class _RadikoBaseIE(InfoExtractor): entry_protocol = 'm3u8' format_note=[] - if domain in self._DOESNT_WORK_WITH_FFMPEG and do_blacklist_streams: + if timefree and domain in self._DOESNT_WORK_WITH_FFMPEG and do_blacklist_streams: + # TODO: remove this completely + # https://github.com/garret1317/yt-dlp-rajiko/issues/29 self.write_debug(f"skipping {domain} (known not working)") continue if domain in self._DELIVERED_ONDEMAND: |