X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fvice.py;h=71f520fb525a5bef424061be1ff881408b762624;hb=51897bb77c504ad206abbef5ae7504fcd082b5b0;hp=87812d6afa6db12558fbd5abd314f2046f29bdd4;hpb=693b8b2d310e119417787e7b06d1e1832d16f05d;p=youtube-dl.git diff --git a/youtube_dl/extractor/vice.py b/youtube_dl/extractor/vice.py index 87812d6af..71f520fb5 100644 --- a/youtube_dl/extractor/vice.py +++ b/youtube_dl/extractor/vice.py @@ -1,3 +1,4 @@ +from __future__ import unicode_literals import re from .common import InfoExtractor @@ -9,14 +10,15 @@ class ViceIE(InfoExtractor): _VALID_URL = r'http://www\.vice\.com/.*?/(?P.+)' _TEST = { - u'url': u'http://www.vice.com/Fringes/cowboy-capitalists-part-1', - u'file': u'43cW1mYzpia9IlestBjVpd23Yu3afAfp.mp4', - u'info_dict': { - u'title': u'VICE_COWBOYCAPITALISTS_PART01_v1_VICE_WM_1080p.mov', + 'url': 'http://www.vice.com/Fringes/cowboy-capitalists-part-1', + 'info_dict': { + 'id': '43cW1mYzpia9IlestBjVpd23Yu3afAfp', + 'ext': 'mp4', + 'title': 'VICE_COWBOYCAPITALISTS_PART01_v1_VICE_WM_1080p.mov', }, - u'params': { + 'params': { # Requires ffmpeg (m3u8 manifest) - u'skip_download': True, + 'skip_download': True, }, } @@ -25,14 +27,11 @@ class ViceIE(InfoExtractor): name = mobj.group('name') webpage = self._download_webpage(url, name) try: - ooyala_url = self._og_search_video_url(webpage) + embed_code = self._search_regex( + r'embedCode=([^&\'"]+)', webpage, + 'ooyala embed code') + ooyala_url = OoyalaIE._url_for_embed_code(embed_code) + print(ooyala_url) except ExtractorError: - try: - embed_code = self._search_regex( - r'OO.Player.create\(\'ooyalaplayer\', \'(.+?)\'', webpage, - u'ooyala embed code') - ooyala_url = OoyalaIE._url_for_embed_code(embed_code) - except ExtractorError: - raise ExtractorError(u'The page doesn\'t contain a video', expected=True) + raise ExtractorError('The page doesn\'t contain a video', expected=True) return self.url_result(ooyala_url, ie='Ooyala') -