Compare commits

...

2 Commits

Author SHA1 Message Date
Philipp Hagemeister
7010577720 release 2015.02.17.1 2015-02-17 17:35:08 +01:00
Philipp Hagemeister
8ac27a68e6 [hls] Switch to available as a property 2015-02-17 17:35:03 +01:00
2 changed files with 2 additions and 2 deletions

View File

@@ -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()

View File

@@ -1,3 +1,3 @@
from __future__ import unicode_literals
__version__ = '2015.02.17'
__version__ = '2015.02.17.1'