Don't attempt to copy cover art for .opus and .wav files

pull/11490/head
7x11x13 3 weeks ago
parent be3579aaf0
commit f3fe2355ee

@ -677,7 +677,7 @@ class FFmpegMetadataPP(FFmpegPostProcessor):
@staticmethod
def _options(target_ext):
audio_only = target_ext == 'm4a'
audio_only = target_ext in ('opus', 'wav')
yield from FFmpegPostProcessor.stream_copy_opts(not audio_only)
if audio_only:
yield from ('-vn', '-acodec', 'copy')

Loading…
Cancel
Save