diff options
author | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-06-22 13:13:40 +0200 |
---|---|---|
committer | Jaime Marquínez Ferrándiz <jaime.marquinez.ferrandiz@gmail.com> | 2013-06-22 13:13:40 +0200 |
commit | ef75f76f5c0704bc5d91a436c724630b6aa9b7d4 (patch) | |
tree | 37b4c88a34903f83d1fb661e7836661b09d03c01 /youtube_dl/InfoExtractors.py | |
parent | 77d0f05f714eec81f076025f309d5d39325d5d0f (diff) |
Detect more vevo videos
Diffstat (limited to 'youtube_dl/InfoExtractors.py')
-rwxr-xr-x | youtube_dl/InfoExtractors.py | 5 |
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 |