diff options
Diffstat (limited to 'youtube_dl/PostProcessor.py')
| -rw-r--r-- | youtube_dl/PostProcessor.py | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/youtube_dl/PostProcessor.py b/youtube_dl/PostProcessor.py index f2e2aa1fa..0501cc7f6 100644 --- a/youtube_dl/PostProcessor.py +++ b/youtube_dl/PostProcessor.py @@ -73,7 +73,7 @@ class FFmpegExtractAudioPP(PostProcessor):  	def detect_executables():  		def executable(exe):  			try: -				subprocess.check_output([exe, '-version']) +				subprocess.Popen([exe, '-version'], stdout=subprocess.PIPE, stderr=subprocess.PIPE).communicate()  			except OSError:  				return False  			return exe @@ -146,7 +146,7 @@ class FFmpegExtractAudioPP(PostProcessor):  					if int(self._preferredquality) < 10:  						more_opts += [self._exes['avconv'] and '-q:a' or '-aq', self._preferredquality]  					else: -						more_opts += [self._exes['avconv'] and '-b:a' or '-ab', self._preferredquality] +						more_opts += [self._exes['avconv'] and '-b:a' or '-ab', self._preferredquality + 'k']  		else:  			# We convert the audio (lossy)  			acodec = {'mp3': 'libmp3lame', 'aac': 'aac', 'm4a': 'aac', 'vorbis': 'libvorbis', 'wav': None}[self._preferredcodec] @@ -156,7 +156,7 @@ class FFmpegExtractAudioPP(PostProcessor):  				if int(self._preferredquality) < 10:  					more_opts += [self._exes['avconv'] and '-q:a' or '-aq', self._preferredquality]  				else: -					more_opts += [self._exes['avconv'] and '-b:a' or '-ab', self._preferredquality] +					more_opts += [self._exes['avconv'] and '-b:a' or '-ab', self._preferredquality + 'k']  			if self._preferredcodec == 'aac':  				more_opts += ['-f', 'adts']  			if self._preferredcodec == 'm4a': | 
