mirror of
https://github.com/yt-dlp/yt-dlp
synced 2025-12-18 15:15:42 +07:00
Prefer ffmpeg over avconv by default (closes #8622)
This commit is contained in:
@@ -841,11 +841,11 @@ def _comma_separated_values_options_callback(option, opt_str, value, parser):
|
||||
postproc.add_option(
|
||||
'--prefer-avconv',
|
||||
action='store_false', dest='prefer_ffmpeg',
|
||||
help='Prefer avconv over ffmpeg for running the postprocessors (default)')
|
||||
help='Prefer avconv over ffmpeg for running the postprocessors')
|
||||
postproc.add_option(
|
||||
'--prefer-ffmpeg',
|
||||
action='store_true', dest='prefer_ffmpeg',
|
||||
help='Prefer ffmpeg over avconv for running the postprocessors')
|
||||
help='Prefer ffmpeg over avconv for running the postprocessors (default)')
|
||||
postproc.add_option(
|
||||
'--ffmpeg-location', '--avconv-location', metavar='PATH',
|
||||
dest='ffmpeg_location',
|
||||
|
||||
Reference in New Issue
Block a user