mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-12-02 10:22:20 -05:00
fix references and nesting
This commit is contained in:
parent
cc17902c09
commit
df63ae4477
2 changed files with 46 additions and 55 deletions
|
@ -1,4 +1,5 @@
|
||||||
import contextlib
|
import contextlib
|
||||||
|
import os
|
||||||
import threading
|
import threading
|
||||||
import time
|
import time
|
||||||
|
|
||||||
|
@ -84,7 +85,7 @@ def real_download(self, filename, info_dict):
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
pass
|
pass
|
||||||
finally:
|
finally:
|
||||||
self.ydl.replace(tempname, filename)
|
os.replace(tempname, filename)
|
||||||
return True
|
return True
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
import os
|
||||||
|
|
||||||
from math import inf
|
from math import inf
|
||||||
|
|
||||||
from .common import PostProcessor
|
from .common import PostProcessor
|
||||||
|
@ -61,24 +63,9 @@ def analyze_mp4(self, filepath):
|
||||||
|
|
||||||
return smallest_bmdt, sdur_cutoff
|
return smallest_bmdt, sdur_cutoff
|
||||||
|
|
||||||
def modify_mp4(self, src, dst, bmdt_offset, sdur_cutoff):
|
@staticmethod
|
||||||
with open(src, 'rb') as r, open(dst, 'wb') as w:
|
def transform(r, bmdt_offset, sdur_cutoff):
|
||||||
def converter():
|
for btype, content in r:
|
||||||
moov_over, in_secondary_moov = False, False
|
|
||||||
for btype, content in parse_mp4_boxes(r):
|
|
||||||
# skip duplicate MOOV boxes
|
|
||||||
if btype == 'moov':
|
|
||||||
if moov_over:
|
|
||||||
in_secondary_moov = True
|
|
||||||
continue
|
|
||||||
elif btype is None and content == 'moov':
|
|
||||||
in_secondary_moov = False
|
|
||||||
|
|
||||||
if moov_over:
|
|
||||||
continue
|
|
||||||
moov_over = True
|
|
||||||
elif in_secondary_moov:
|
|
||||||
continue
|
|
||||||
if btype == 'tfdt':
|
if btype == 'tfdt':
|
||||||
version, _ = unpack_ver_flags(content[0:4])
|
version, _ = unpack_ver_flags(content[0:4])
|
||||||
if version == 0:
|
if version == 0:
|
||||||
|
@ -115,7 +102,10 @@ def converter():
|
||||||
continue
|
continue
|
||||||
yield (btype, content)
|
yield (btype, content)
|
||||||
|
|
||||||
write_mp4_boxes(w, converter())
|
|
||||||
|
def modify_mp4(self, src, dst, bmdt_offset, sdur_cutoff):
|
||||||
|
with open(src, 'rb') as r, open(dst, 'wb') as w:
|
||||||
|
write_mp4_boxes(w, self.transform(parse_mp4_boxes(r)))
|
||||||
|
|
||||||
def run(self, information):
|
def run(self, information):
|
||||||
filename = information['filepath']
|
filename = information['filepath']
|
||||||
|
@ -137,6 +127,6 @@ def run(self, information):
|
||||||
else:
|
else:
|
||||||
self.report_warning(f'Failed to fix duration of the file. (baseMediaDecodeTime offset = {bmdt_offset}, sample duration cutoff = {sdur_cutoff})')
|
self.report_warning(f'Failed to fix duration of the file. (baseMediaDecodeTime offset = {bmdt_offset}, sample duration cutoff = {sdur_cutoff})')
|
||||||
|
|
||||||
self._downloader.replace(temp_filename, filename)
|
os.replace(temp_filename, filename)
|
||||||
|
|
||||||
return [], information
|
return [], information
|
||||||
|
|
Loading…
Reference in a new issue