[cleanup, docs] Minor fixes

Closes #2230
This commit is contained in:
pukkandan 2022-01-12 09:00:21 +05:30
parent 397235c52b
commit ed8d87f911
No known key found for this signature in database
GPG key ID: 0F00D95A001F4698
6 changed files with 16 additions and 14 deletions

View file

@ -585,7 +585,7 @@ class FFmpegVideoRemuxerPP(FFmpegVideoConvertorPP):
@staticmethod
def _options(target_ext):
return self.stream_copy_opts()
return FFmpegPostProcessor.stream_copy_opts()
class FFmpegEmbedSubtitlePP(FFmpegPostProcessor):
@ -678,7 +678,7 @@ class FFmpegMetadataPP(FFmpegPostProcessor):
@staticmethod
def _options(target_ext):
audio_only = target_ext == 'm4a'
yield from self.stream_copy_opts(not audio_only)
yield from FFmpegPostProcessor.stream_copy_opts(not audio_only)
if audio_only:
yield from ('-vn', '-acodec', 'copy')