From: Jaime Marquínez Ferrándiz Date: Tue, 17 Feb 2015 15:40:42 +0000 (+0100) Subject: [downloader/hls] Fix detection of ffmpeg/avconv (reported in #4966) X-Git-Url: http://git.oshgnacknak.de/?a=commitdiff_plain;h=fbc503d69698fca33525707b859b41d491d681ff;p=youtube-dl [downloader/hls] Fix detection of ffmpeg/avconv (reported in #4966) --- 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()