Browse Source

[downloader/hls] Return False if ffmpeg or avconv couldn't be found

Jaime Marquínez Ferrándiz 11 years ago
parent
commit
baf2907501
1 changed files with 1 additions and 0 deletions
  1. 1 0
      youtube_dl/downloader/hls.py

+ 1 - 0
youtube_dl/downloader/hls.py

@@ -24,6 +24,7 @@ class HlsFD(FileDownloader):
                 break
         else:
             self.report_error(u'm3u8 download detected but ffmpeg or avconv could not be found. Please install one.')
+            return False
         cmd = [program] + args
 
         retval = subprocess.call(cmd)