summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-01-04 13:40:30 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-01-04 13:41:49 +0100
commit63948fc62c7f0bfcfe7b2ce102ab6e4e87de558c (patch)
treeafa38ed4830aaa9e452e3ef49d3d62b921bbbf30
parent26886e6140a684058064c30237ef096332e1510f (diff)
downloadyoutube-dl-63948fc62c7f0bfcfe7b2ce102ab6e4e87de558c.tar.gz
youtube-dl-63948fc62c7f0bfcfe7b2ce102ab6e4e87de558c.tar.xz
youtube-dl-63948fc62c7f0bfcfe7b2ce102ab6e4e87de558c.zip
[downloader/hls] Respect the 'prefer_ffmpeg' option
-rw-r--r--youtube_dl/downloader/hls.py12
1 files changed, 4 insertions, 8 deletions
diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py
index 5bb0f3cfd..aa58b52ab 100644
--- a/youtube_dl/downloader/hls.py
+++ b/youtube_dl/downloader/hls.py
@@ -11,7 +11,6 @@ from ..compat import (
     compat_urllib_request,
 )
 from ..utils import (
-    check_executable,
     encodeFilename,
 )
 
@@ -27,16 +26,13 @@ class HlsFD(FileDownloader):
             '-bsf:a', 'aac_adtstoasc',
             encodeFilename(tmpfilename, for_subprocess=True)]
 
-        for program in ['avconv', 'ffmpeg']:
-            if check_executable(program, ['-version']):
-                break
-        else:
+        ffpp = FFmpegPostProcessor(downloader=self)
+        program = ffpp._executable
+        if program is None:
             self.report_error('m3u8 download detected but ffmpeg or avconv could not be found. Please install one.')
             return False
-        cmd = [program] + args
-
-        ffpp = FFmpegPostProcessor(downloader=self)
         ffpp.check_version()
+        cmd = [program] + args
 
         retval = subprocess.call(cmd)
         if retval == 0: