mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
Don't recode the video with m3u8 downloads (fixes #1741)
This commit is contained in:
parent
dd5bcdc4c9
commit
be07375b66
1 changed files with 2 additions and 1 deletions
|
@ -379,7 +379,8 @@ def _download_m3u8_with_ffmpeg(self, filename, url):
|
|||
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)
|
||||
|
|
Loading…
Reference in a new issue