[downloader/hls] Encode filename (Fixes #2609)

This commit is contained in:
Philipp Hagemeister 2014-03-24 21:23:05 +01:00
parent 0d466d34a3
commit 75f2e25ba9
1 changed files with 4 additions and 2 deletions

View File

@ -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: