From: Jaime Marquínez Ferrándiz Date: Sat, 9 Nov 2013 15:40:00 +0000 (+0100) Subject: Don't recode the video with m3u8 downloads (fixes #1741) X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=commitdiff_plain;h=be07375b66df1a803eab27fee7112214f1f2b392;p=youtube-dl Don't recode the video with m3u8 downloads (fixes #1741) --- diff --git a/youtube_dl/FileDownloader.py b/youtube_dl/FileDownloader.py index 20f57b6bf..35fa3ca61 100644 --- a/youtube_dl/FileDownloader.py +++ b/youtube_dl/FileDownloader.py @@ -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)