[ie/radiko] Fix bug with `downloader_options`

Closes #8333
Authored by: bashonly
pull/3668/head
bashonly 2023-10-13 14:23:39 -05:00
rodzic feebf6d02f
commit b931664231
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 783F096F253D15B0
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -154,7 +154,7 @@ class RadikoBaseIE(InfoExtractor):
sf['preference'] = -100
sf['format_note'] = 'not preferred'
if not is_onair and timefree_int == 1 and time_to_skip:
sf['downloader_options'] = {'ffmpeg_args': ['-ss', time_to_skip]}
sf['downloader_options'] = {'ffmpeg_args': ['-ss', str(time_to_skip)]}
formats.extend(subformats)
return formats