aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-06-22 13:13:40 +0200
committerJaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com>2013-06-22 13:13:40 +0200
commitef75f76f5c0704bc5d91a436c724630b6aa9b7d4 (patch)
tree37b4c88a34903f83d1fb661e7836661b09d03c01
parent77d0f05f714eec81f076025f309d5d39325d5d0f (diff)
downloadyoutube-dl-ef75f76f5c0704bc5d91a436c724630b6aa9b7d4.tar.xz
Detect more vevo videos
-rwxr-xr-xyoutube_dl/InfoExtractors.py5
1 files changed, 3 insertions, 2 deletions
diff --git a/youtube_dl/InfoExtractors.py b/youtube_dl/InfoExtractors.py
index a12bffbe3..2a748b175 100755
--- a/youtube_dl/InfoExtractors.py
+++ b/youtube_dl/InfoExtractors.py
@@ -727,10 +727,11 @@ class YoutubeIE(InfoExtractor):
try:
mobj = re.search(r';ytplayer.config = ({.*?});', video_webpage)
info = json.loads(mobj.group(1))
- if 'dashmpd' in info['args']:
+ args = info['args']
+ if args.get('ptk','') == 'vevo' or 'dashmpd':
# Vevo videos with encrypted signatures
self.to_screen(u'Vevo video detected.')
- video_info['url_encoded_fmt_stream_map'] = [info['args']['url_encoded_fmt_stream_map']]
+ video_info['url_encoded_fmt_stream_map'] = [args['url_encoded_fmt_stream_map']]
except ValueError:
pass