aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/YoutubeDL.py
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/YoutubeDL.py
parent0d2f0b0357325823782884327a158aeccf4f9b49 (diff)
downloadyoutube-dl-a02682fd13ce5ba88d2508c90559eaa7f43b65d5.zip
youtube-dl-a02682fd13ce5ba88d2508c90559eaa7f43b65d5.tar.gz
youtube-dl-a02682fd13ce5ba88d2508c90559eaa7f43b65d5.tar.bz2
Keep in sync with ffmpeg's current malformed AAC bitstream wording (closes #13587)
Diffstat (limited to 'youtube_dl/YoutubeDL.py')
-rwxr-xr-xyoutube_dl/YoutubeDL.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/youtube_dl/YoutubeDL.py b/youtube_dl/YoutubeDL.py
index b3a6d4d..60ee4b7 100755
--- a/youtube_dl/YoutubeDL.py
+++ b/youtube_dl/YoutubeDL.py
@@ -1890,7 +1890,7 @@ class YoutubeDL(object):
info_dict.get('protocol') == 'm3u8' and
self.params.get('hls_prefer_native')):
if fixup_policy == 'warn':
- self.report_warning('%s: malformated aac bitstream.' % (
+ self.report_warning('%s: malformed AAC bitstream detected.' % (
info_dict['id']))
elif fixup_policy == 'detect_or_warn':
fixup_pp = FFmpegFixupM3u8PP(self)
@@ -1899,7 +1899,7 @@ class YoutubeDL(object):
info_dict['__postprocessors'].append(fixup_pp)
else:
self.report_warning(
- '%s: malformated aac bitstream. %s'
+ '%s: malformed AAC bitstream detected. %s'
% (info_dict['id'], INSTALL_FFMPEG_MESSAGE))
else:
assert fixup_policy in ('ignore', 'never')