diff options
author | Sergey M․ <dstftw@gmail.com> | 2018-06-29 01:09:14 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2018-06-29 01:09:14 +0700 |
commit | d4a24f4091a622b808ff621e78b5cfd0db3c8c11 (patch) | |
tree | 9c482539a5fc091a7ecd4f63b2171bcce06ef559 /youtube_dl/YoutubeDL.py | |
parent | acbd0ff5df5ff9d69e6707ea4fa3e3b4f9cc6528 (diff) |
Prefer ffmpeg over avconv by default (closes #8622)
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-x | youtube_dl/YoutubeDL.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py index 2a405c5ca..38ba43a97 100755 --- a/youtube_dl/YoutubeDL.py +++ b/youtube_dl/YoutubeDL.py @@ -305,8 +305,8 @@ class YoutubeDL(object): http_chunk_size. The following options are used by the post processors: - prefer_ffmpeg: If True, use ffmpeg instead of avconv if both are available, - otherwise prefer avconv. + prefer_ffmpeg: If False, use avconv instead of ffmpeg if both are available, + otherwise prefer ffmpeg. postprocessor_args: A list of additional command-line arguments for the postprocessor. |