[downloader/hls] Encode filename (Fixes #2609)
This commit is contained in:
parent
0d466d34a3
commit
75f2e25ba9
1 changed files with 4 additions and 2 deletions
|
@ -13,8 +13,10 @@ class HlsFD(FileDownloader):
|
|||
self.report_destination(filename)
|
||||
tmpfilename = self.temp_name(filename)
|
||||
|
||||
args = ['-y', '-i', url, '-f', 'mp4', '-c', 'copy',
|
||||
'-bsf:a', 'aac_adtstoasc', tmpfilename]
|
||||
args = [
|
||||
'-y', '-i', url, '-f', 'mp4', '-c', 'copy',
|
||||
'-bsf:a', 'aac_adtstoasc',
|
||||
encodeFilename(tmpfilename, for_subprocess=True)]
|
||||
|
||||
for program in ['avconv', 'ffmpeg']:
|
||||
try:
|
||||
|
|
Loading…
Reference in a new issue