mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-04 20:17:22 +01:00
parent
2c4aaaddc9
commit
9bdd99cf39
@ -593,10 +593,16 @@ def run(self, info):
|
|||||||
return [], info
|
return [], info
|
||||||
|
|
||||||
filename = info['filepath']
|
filename = info['filepath']
|
||||||
|
|
||||||
|
# Disabled temporarily. There needs to be a way to overide this
|
||||||
|
# in case of duration actually mismatching in extractor
|
||||||
|
# See: https://github.com/yt-dlp/yt-dlp/issues/1870, https://github.com/yt-dlp/yt-dlp/issues/1385
|
||||||
|
'''
|
||||||
if info.get('duration') and not info.get('__real_download') and self._duration_mismatch(
|
if info.get('duration') and not info.get('__real_download') and self._duration_mismatch(
|
||||||
self._get_real_video_duration(filename, False), info['duration']):
|
self._get_real_video_duration(filename, False), info['duration']):
|
||||||
self.to_screen(f'Skipping {self.pp_key()} since the real and expected durations mismatch')
|
self.to_screen(f'Skipping {self.pp_key()} since the real and expected durations mismatch')
|
||||||
return [], info
|
return [], info
|
||||||
|
'''
|
||||||
|
|
||||||
ext = info['ext']
|
ext = info['ext']
|
||||||
sub_langs, sub_names, sub_filenames = [], [], []
|
sub_langs, sub_names, sub_filenames = [], [], []
|
||||||
|
Loading…
Reference in New Issue
Block a user