1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-09-15 23:32:25 +02:00

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

This commit is contained in:
Jaime Marquínez Ferrándiz 2014-08-27 15:50:03 +02:00
parent 3c765c68c4
commit baf2907501

View File

@ -24,6 +24,7 @@ def real_download(self, filename, info_dict):
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)