mirror of
https://github.com/soimort/you-get.git
synced 2025-01-24 14:05:01 +03:00
[common] pass valid filename in download_url_ffmpeg
This commit is contained in:
parent
8e150e6989
commit
474f4d724a
@ -968,11 +968,15 @@ 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):
|
||||
if output_filename:
|
||||
dotPos = output_filename.rfind(".")
|
||||
title = output_filename[:dotPos]
|
||||
ext = output_filename[dotPos+1:]
|
||||
|
||||
title = tr(get_filename(title))
|
||||
|
||||
ffmpeg_download_stream(url, title, ext, params, output_dir)
|
||||
|
||||
def playlist_not_supported(name):
|
||||
|
Loading…
Reference in New Issue
Block a user