fix bug about renaming videos when downloading with ffmpeg

This commit is contained in:
zhangchao 2016-09-27 23:04:01 +08:00
parent 7e5abc9371
commit 8674f43c36

View File

@ -916,6 +916,11 @@ def download_url_ffmpeg(url,title, ext,params={}, total_size=0, output_dir='.',
from .processor.ffmpeg import has_ffmpeg_installed, ffmpeg_download_stream
assert has_ffmpeg_installed(), "FFmpeg not installed."
global output_filename
if(output_filename)
dotPos = output_filename.rfind(".")
title = output_filename[:dotPos]
ext = output_filename[dotPos+1:]
ffmpeg_download_stream(url, title, ext, params, output_dir)
def playlist_not_supported(name):