mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-20 05:47:24 +01:00
Don't attempt to copy cover art for .opus and .wav files
This commit is contained in:
parent
be3579aaf0
commit
f3fe2355ee
@ -677,7 +677,7 @@ def __init__(self, downloader, add_metadata=True, add_chapters=True, add_infojso
|
||||
|
||||
@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…
Reference in New Issue
Block a user