about summary refs log tree commit diff
path: root/youtube_dl/postprocessor
diff options
context:
space:
mode:
authorSergey M․ <dstftw@gmail.com>2017-07-09 17:09:44 +0700
committerSergey M․ <dstftw@gmail.com>2017-07-09 17:09:44 +0700
commita02682fd13ce5ba88d2508c90559eaa7f43b65d5 (patch)
treef43646bebfa67f09e11720c996685afb86f72b75 /youtube_dl/postprocessor
parent0d2f0b0357325823782884327a158aeccf4f9b49 (diff)
downloadyoutube-dl-a02682fd13ce5ba88d2508c90559eaa7f43b65d5.tar.gz
youtube-dl-a02682fd13ce5ba88d2508c90559eaa7f43b65d5.tar.xz
youtube-dl-a02682fd13ce5ba88d2508c90559eaa7f43b65d5.zip
Keep in sync with ffmpeg's current malformed AAC bitstream wording (closes #13587)
Diffstat (limited to 'youtube_dl/postprocessor')
-rw-r--r--youtube_dl/postprocessor/ffmpeg.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/postprocessor/ffmpeg.py b/youtube_dl/postprocessor/ffmpeg.py
index f021ea8fd..51256a3fb 100644
--- a/youtube_dl/postprocessor/ffmpeg.py
+++ b/youtube_dl/postprocessor/ffmpeg.py
@@ -542,7 +542,7 @@ class FFmpegFixupM3u8PP(FFmpegPostProcessor):
             temp_filename = prepend_extension(filename, 'temp')
 
             options = ['-c', 'copy', '-f', 'mp4', '-bsf:a', 'aac_adtstoasc']
-            self._downloader.to_screen('[ffmpeg] Fixing malformated aac bitstream in "%s"' % filename)
+            self._downloader.to_screen('[ffmpeg] Fixing malformed AAC bitstream in "%s"' % filename)
             self.run_ffmpeg(filename, temp_filename, options)
 
             os.remove(encodeFilename(filename))