Browse Source

Simplify test

rtmp_test
Philipp Hagemeister 13 years ago
parent
commit
efb113c736
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube-dl

+ 1
- 1
youtube-dl View File

@ -3351,7 +3351,7 @@ class FFmpegExtractAudioPP(PostProcessor):
more_opts = []
if self._preferredcodec == 'best' or self._preferredcodec == filecodec:
if filecodec == 'aac' or filecodec == 'mp3' or filecodec == 'vorbis':
if filecodec in ['aac', 'mp3', 'vorbis']:
# Lossless if possible
acodec = 'copy'
extension = filecodec


Loading…
Cancel
Save