summary refs log tree commit diff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-02-17 16:40:42 +0100
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2015-02-17 16:40:42 +0100
commitfbc503d69698fca33525707b859b41d491d681ff (patch)
tree8bdcfda0993461888d0dd5ff2d843e5af7d8229f
parent662435f7281da418612131512725fa5e367605be (diff)
downloadyoutube-dl-fbc503d69698fca33525707b859b41d491d681ff.tar.gz
youtube-dl-fbc503d69698fca33525707b859b41d491d681ff.tar.xz
youtube-dl-fbc503d69698fca33525707b859b41d491d681ff.zip
[downloader/hls] Fix detection of ffmpeg/avconv (reported in #4966)
-rw-r--r--youtube_dl/downloader/hls.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/downloader/hls.py b/youtube_dl/downloader/hls.py
index 8be4f4249..3650d715e 100644
--- a/youtube_dl/downloader/hls.py
+++ b/youtube_dl/downloader/hls.py
@@ -23,7 +23,7 @@ class HlsFD(FileDownloader):
         tmpfilename = self.temp_name(filename)
 
         ffpp = FFmpegPostProcessor(downloader=self)
-        if not ffpp.available:
+        if not ffpp.available():
             self.report_error('m3u8 download detected but ffmpeg or avconv could not be found. Please install one.')
             return False
         ffpp.check_version()