1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-06-26 05:39:34 +00:00

Don't recode the video with m3u8 downloads (fixes #1741)

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-11-09 16:40:00 +01:00
parent dd5bcdc4c9
commit be07375b66

View file

@ -379,7 +379,8 @@ class FileDownloader(object):
self.report_destination(filename)
tmpfilename = self.temp_name(filename)
args = ['ffmpeg', '-y', '-i', url, '-f', 'mp4', tmpfilename]
args = ['ffmpeg', '-y', '-i', url, '-f', 'mp4', '-c', 'copy',
'-absf', 'aac_adtstoasc', tmpfilename]
# Check for ffmpeg first
try:
subprocess.call(['ffmpeg', '-h'], stdout=(open(os.path.devnull, 'w')), stderr=subprocess.STDOUT)