aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/utils.py
diff options
context:
space:
mode:
authorYen Chi Hsuan <yan12125@gmail.com>2016-07-10 23:40:45 +0800
committerGitHub <noreply@github.com>2016-07-10 23:40:45 +0800
commit0b68de3cc1f99ce8c49a497245c02d4d03201aa8 (patch)
tree885385b3b4968715eb2b7d51b4f66f3a12da7f46 /youtube_dl/utils.py
parent39e9d524e5fe289936160d4c599a77f10f6e9061 (diff)
parent59bbe4911acd4493bf407925bfdeb1ad03db6ef3 (diff)
downloadyoutube-dl-0b68de3cc1f99ce8c49a497245c02d4d03201aa8.zip
youtube-dl-0b68de3cc1f99ce8c49a497245c02d4d03201aa8.tar.gz
youtube-dl-0b68de3cc1f99ce8c49a497245c02d4d03201aa8.tar.bz2
Merge pull request #8876 from remitamine/html5_media
[extractor/common] add helper method to extract html5 media entries
Diffstat (limited to 'youtube_dl/utils.py')
-rw-r--r--youtube_dl/utils.py36
1 files changed, 36 insertions, 0 deletions
diff --git a/youtube_dl/utils.py b/youtube_dl/utils.py
index 3498697..4c1d0d5 100644
--- a/youtube_dl/utils.py
+++ b/youtube_dl/utils.py
@@ -2126,6 +2126,42 @@ def mimetype2ext(mt):
}.get(res, res)
+def parse_codecs(codecs_str):
+ # http://tools.ietf.org/html/rfc6381
+ if not codecs_str:
+ return {}
+ splited_codecs = list(filter(None, map(
+ lambda str: str.strip(), codecs_str.strip().strip(',').split(','))))
+ vcodec, acodec = None, None
+ for full_codec in splited_codecs:
+ codec = full_codec.split('.')[0]
+ 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'):
+ if not acodec:
+ acodec = full_codec
+ else:
+ write_string('WARNING: Unknown codec %s' % full_codec, sys.stderr)
+ if not vcodec and not acodec:
+ if len(splited_codecs) == 2:
+ return {
+ 'vcodec': vcodec,
+ 'acodec': acodec,
+ }
+ elif len(splited_codecs) == 1:
+ return {
+ 'vcodec': 'none',
+ 'acodec': vcodec,
+ }
+ else:
+ return {
+ 'vcodec': vcodec or 'none',
+ 'acodec': acodec or 'none',
+ }
+ return {}
+
+
def urlhandle_detect_ext(url_handle):
getheader = url_handle.headers.get