mirror of
https://github.com/blackjack4494/yt-dlc.git
synced 2024-11-04 18:12:50 +01:00
[downloader/hls] Encode filename (Fixes #2609)
This commit is contained in:
parent
0d466d34a3
commit
75f2e25ba9
@ -13,8 +13,10 @@ class HlsFD(FileDownloader):
|
|||||||
self.report_destination(filename)
|
self.report_destination(filename)
|
||||||
tmpfilename = self.temp_name(filename)
|
tmpfilename = self.temp_name(filename)
|
||||||
|
|
||||||
args = ['-y', '-i', url, '-f', 'mp4', '-c', 'copy',
|
args = [
|
||||||
'-bsf:a', 'aac_adtstoasc', tmpfilename]
|
'-y', '-i', url, '-f', 'mp4', '-c', 'copy',
|
||||||
|
'-bsf:a', 'aac_adtstoasc',
|
||||||
|
encodeFilename(tmpfilename, for_subprocess=True)]
|
||||||
|
|
||||||
for program in ['avconv', 'ffmpeg']:
|
for program in ['avconv', 'ffmpeg']:
|
||||||
try:
|
try:
|
||||||
|
Loading…
Reference in New Issue
Block a user