|
|
@ -100,7 +100,8 @@ class FFmpegExtractAudioPP(FFmpegPostProcessor):
|
|
|
|
self._nopostoverwrites = nopostoverwrites
|
|
|
|
self._nopostoverwrites = nopostoverwrites
|
|
|
|
|
|
|
|
|
|
|
|
def get_audio_codec(self, path):
|
|
|
|
def get_audio_codec(self, path):
|
|
|
|
if not self._exes['ffprobe'] and not self._exes['avprobe']: return None
|
|
|
|
if not self._exes['ffprobe'] and not self._exes['avprobe']:
|
|
|
|
|
|
|
|
raise PostProcessingError(u'ffprobe or avprobe not found. Please install one.')
|
|
|
|
try:
|
|
|
|
try:
|
|
|
|
cmd = [self._exes['avprobe'] or self._exes['ffprobe'], '-show_streams', encodeFilename(self._ffmpeg_filename_argument(path))]
|
|
|
|
cmd = [self._exes['avprobe'] or self._exes['ffprobe'], '-show_streams', encodeFilename(self._ffmpeg_filename_argument(path))]
|
|
|
|
handle = subprocess.Popen(cmd, stderr=compat_subprocess_get_DEVNULL(), stdout=subprocess.PIPE)
|
|
|
|
handle = subprocess.Popen(cmd, stderr=compat_subprocess_get_DEVNULL(), stdout=subprocess.PIPE)
|
|
|
|