diff options
author | Philipp Hagemeister <phihag@phihag.de> | 2013-02-01 18:23:20 +0100 |
---|---|---|
committer | Philipp Hagemeister <phihag@phihag.de> | 2013-02-01 18:23:20 +0100 |
commit | 0e33684194c9e364c70e0da3400b9568fa636538 (patch) | |
tree | ee2f0618c205c02b10d438ae33c9bdb136f5e2d2 /youtube_dl/PostProcessor.py | |
parent | 9e982f9e4eff4219f8c10df7529280b7eab16236 (diff) |
Switch to m4a by default (Closes #240)
Diffstat (limited to 'youtube_dl/PostProcessor.py')
-rw-r--r-- | youtube_dl/PostProcessor.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/PostProcessor.py b/youtube_dl/PostProcessor.py index 545b6992b..70dc01004 100644 --- a/youtube_dl/PostProcessor.py +++ b/youtube_dl/PostProcessor.py @@ -143,10 +143,10 @@ class FFmpegExtractAudioPP(FFmpegPostProcessor): more_opts = [] if self._preferredcodec == 'best' or self._preferredcodec == filecodec or (self._preferredcodec == 'm4a' and filecodec == 'aac'): - if self._preferredcodec == 'm4a' and filecodec == 'aac': + if filecodec == 'aac' and self._preferredcodec in ['m4a', 'best']: # Lossless, but in another container acodec = 'copy' - extension = self._preferredcodec + extension = 'm4a' more_opts = [self._exes['avconv'] and '-bsf:a' or '-absf', 'aac_adtstoasc'] elif filecodec in ['aac', 'mp3', 'vorbis', 'opus']: # Lossless if possible |