mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-03-09 12:50:23 -05:00
fix pull request lint comments
cleaned up implementation and comments
This commit is contained in:
parent
c29caf1739
commit
fc46f24dc5
1 changed files with 13 additions and 10 deletions
|
@ -1046,20 +1046,23 @@ def _ffmpeg_args_for_chapter(self, number, chapter, info):
|
||||||
destination,
|
destination,
|
||||||
['-ss', str(chapter['start_time']),
|
['-ss', str(chapter['start_time']),
|
||||||
'-t', str(chapter['end_time'] - chapter['start_time'])])
|
'-t', str(chapter['end_time'] - chapter['start_time'])])
|
||||||
|
|
||||||
# FFmpeg adds metadata about all chapters from parent file to all split m4a files.
|
# FFmpeg adds metadata about all chapters from parent file to all split m4a files.
|
||||||
# This is incorrect since there must be only single chapter in each file after split.
|
# This is incorrect since there must be only single chapter in each file after split.
|
||||||
# Such behavior confuses players who think multiple chapters present
|
# Such behavior confuses players who think multiple chapters present
|
||||||
def _set_out_opts(self, ext, chapter_title):
|
def _set_out_opts(self, ext, chapter_title):
|
||||||
|
out_opts = [*self.stream_copy_opts()]
|
||||||
|
out_opts.extend(['-map_metadata', '0'])
|
||||||
|
# exclude chapters metadata but keep everything else
|
||||||
|
out_opts.extend(['-map_chapters', '-1'])
|
||||||
|
if not chapter_title:
|
||||||
|
return out_opts
|
||||||
|
# replace global title with chapter specific title in split files
|
||||||
if ext == 'm4a':
|
if ext == 'm4a':
|
||||||
return [
|
out_opts.extend(['-metadata', 'title={}'.format(chapter_title)])
|
||||||
*self.stream_copy_opts(),
|
if ext == 'opus':
|
||||||
# For m4a ffmpeg copies all available parent track chapters to split tracks metadata
|
out_opts.extend(['-metadata:s', 'title={}'.format(chapter_title)])
|
||||||
# And such behavior confuses players
|
return out_opts
|
||||||
# Wipe parent track metadata from split tracks and fill out only title
|
|
||||||
'-metadata', 'title={}'.format(chapter_title),
|
|
||||||
'-map_metadata','-1']
|
|
||||||
else:
|
|
||||||
return self.stream_copy_opts()
|
|
||||||
|
|
||||||
@PostProcessor._restrict_to(images=False)
|
@PostProcessor._restrict_to(images=False)
|
||||||
def run(self, info):
|
def run(self, info):
|
||||||
|
@ -1075,7 +1078,7 @@ def run(self, info):
|
||||||
self.to_screen('Splitting video by chapters; %d chapters found' % len(chapters))
|
self.to_screen('Splitting video by chapters; %d chapters found' % len(chapters))
|
||||||
for idx, chapter in enumerate(chapters):
|
for idx, chapter in enumerate(chapters):
|
||||||
destination, opts = self._ffmpeg_args_for_chapter(idx + 1, chapter, info)
|
destination, opts = self._ffmpeg_args_for_chapter(idx + 1, chapter, info)
|
||||||
out_file_opts = self._set_out_opts(info['ext'], chapter['title'])
|
out_file_opts = self._set_out_opts(info['ext'], chapter.get('title', ''))
|
||||||
self.real_run_ffmpeg([(in_file, opts)], [(destination, out_file_opts)])
|
self.real_run_ffmpeg([(in_file, opts)], [(destination, out_file_opts)])
|
||||||
if in_file != info['filepath']:
|
if in_file != info['filepath']:
|
||||||
self._delete_downloaded_files(in_file, msg=None)
|
self._delete_downloaded_files(in_file, msg=None)
|
||||||
|
|
Loading…
Reference in a new issue