Browse Source

[downloader/external] check for ffmpeg availablity when it used for m3u8 download

remitamine 9 years ago
parent
commit
77dea16ac8
1 changed files with 3 additions and 0 deletions
  1. 3 0
      youtube_dl/downloader/external.py

+ 3 - 0
youtube_dl/downloader/external.py

@@ -175,6 +175,9 @@ class FFmpegFD(ExternalFD):
     def _call_downloader(self, tmpfilename, info_dict):
         url = info_dict['url']
         ffpp = FFmpegPostProcessor(downloader=self)
+        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()
 
         args = [ffpp.executable, '-y']