Sergey M․
7 years ago
No known key found for this signature in database
GPG Key ID: 2C393E0F18A9236D
1 changed files with
2 additions and
2 deletions
-
youtube_dl/utils.py
|
|
@ -2360,11 +2360,11 @@ def parse_codecs(codecs_str): |
|
|
|
if codec in ('avc1', 'avc2', 'avc3', 'avc4', 'vp9', 'vp8', 'hev1', 'hev2', 'h263', 'h264', 'mp4v'): |
|
|
|
if not vcodec: |
|
|
|
vcodec = full_codec |
|
|
|
elif codec in ('mp4a', 'opus', 'vorbis', 'mp3', 'aac', 'ac-3'): |
|
|
|
elif codec in ('mp4a', 'opus', 'vorbis', 'mp3', 'aac', 'ac-3', 'ec-3', 'eac3', 'dtsc', 'dtse', 'dtsh', 'dtsl'): |
|
|
|
if not acodec: |
|
|
|
acodec = full_codec |
|
|
|
else: |
|
|
|
write_string('WARNING: Unknown codec %s' % full_codec, sys.stderr) |
|
|
|
write_string('WARNING: Unknown codec %s\n' % full_codec, sys.stderr) |
|
|
|
if not vcodec and not acodec: |
|
|
|
if len(splited_codecs) == 2: |
|
|
|
return { |
|
|
|