1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2025-11-07 01:55:13 +00:00

[core] sleep-subtitles fix

This commit is contained in:
Unknown
2020-11-01 03:36:16 +01:00
parent ae306df7e0
commit 31108ce946
2 changed files with 7 additions and 6 deletions

View File

@@ -364,11 +364,12 @@ class FileDownloader(object):
else '%.2f' % sleep_interval))
time.sleep(sleep_interval)
else:
sleep_interval_sub = self.params.get('sleep_interval_subtitles')
self.to_screen(
'[download] Sleeping %s seconds...' % (
int(sleep_interval_sub)))
time.sleep(sleep_interval_sub)
if self.params.get('sleep_interval_subtitles') > 0:
sleep_interval_sub = self.params.get('sleep_interval_subtitles')
self.to_screen(
'[download] Sleeping %s seconds...' % (
sleep_interval_sub))
time.sleep(sleep_interval_sub)
return self.real_download(filename, info_dict)
def real_download(self, filename, info_dict):