[ie/radiko] Fix bug with downloader_options
Closes #8333 Authored by: bashonly
This commit is contained in:
parent
feebf6d02f
commit
b931664231
1 changed files with 1 additions and 1 deletions
|
@ -154,7 +154,7 @@ class RadikoBaseIE(InfoExtractor):
|
||||||
sf['preference'] = -100
|
sf['preference'] = -100
|
||||||
sf['format_note'] = 'not preferred'
|
sf['format_note'] = 'not preferred'
|
||||||
if not is_onair and timefree_int == 1 and time_to_skip:
|
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)
|
formats.extend(subformats)
|
||||||
|
|
||||||
return formats
|
return formats
|
||||||
|
|
Loading…
Reference in a new issue