mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2025-03-09 12:50:23 -05:00
Merge f3fe2355ee
into 05c8023a27
This commit is contained in:
commit
f7e6ccf348
1 changed files with 1 additions and 1 deletions
|
@ -676,7 +676,7 @@ def __init__(self, downloader, add_metadata=True, add_chapters=True, add_infojso
|
||||||
|
|
||||||
@staticmethod
|
@staticmethod
|
||||||
def _options(target_ext):
|
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)
|
yield from FFmpegPostProcessor.stream_copy_opts(not audio_only)
|
||||||
if audio_only:
|
if audio_only:
|
||||||
yield from ('-vn', '-acodec', 'copy')
|
yield from ('-vn', '-acodec', 'copy')
|
||||||
|
|
Loading…
Reference in a new issue