diff options
author | garret <garret@airmail.cc> | 2023-10-29 18:34:37 +0000 |
---|---|---|
committer | garret <garret@airmail.cc> | 2023-10-29 18:34:37 +0000 |
commit | ef54501b5111981b3d04f804c275404b690064af (patch) | |
tree | 3625fcf85a58ba4f7172286f45bf8566cec8e34c /yt_dlp_plugins | |
parent | ef32ce28e41dd3940b6770ef635d7142ad8a719a (diff) | |
download | yt-dlp-rajiko-ef54501b5111981b3d04f804c275404b690064af.tar.gz yt-dlp-rajiko-ef54501b5111981b3d04f804c275404b690064af.tar.bz2 yt-dlp-rajiko-ef54501b5111981b3d04f804c275404b690064af.zip |
add notes about meaning of the url parameters
Diffstat (limited to 'yt_dlp_plugins')
-rw-r--r-- | yt_dlp_plugins/extractor/radiko.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/yt_dlp_plugins/extractor/radiko.py b/yt_dlp_plugins/extractor/radiko.py index 6a5ccd5..0f44a7b 100644 --- a/yt_dlp_plugins/extractor/radiko.py +++ b/yt_dlp_plugins/extractor/radiko.py @@ -546,9 +546,9 @@ class _RadikoBaseIE(InfoExtractor): seen_urls.append(url) playlist_url = update_url_query(url, { "station_id": station, - "l": "15", + "l": "15", # l = length, ie how many seconds in the live m3u8 (max 300) "lsid": self._user, - "type": "b", + "type": "b", # it is a mystery }) if timefree: playlist_url = update_url_query(playlist_url, { |