X-Git-Url: http://git.bitcoin.ninja/index.cgi?a=blobdiff_plain;f=youtube_dl%2Fextractor%2Fvimple.py;h=ee3d86117e625cca66303aeeee229f1a091b4602;hb=ecd1936695e73ba850d0618828b4a40d7d16c091;hp=f3a807cd38a878c230df80b6f6391742bdef261d;hpb=3a0879c8c801d27087396613d80f83c112a328f9;p=youtube-dl diff --git a/youtube_dl/extractor/vimple.py b/youtube_dl/extractor/vimple.py index f3a807cd3..ee3d86117 100644 --- a/youtube_dl/extractor/vimple.py +++ b/youtube_dl/extractor/vimple.py @@ -1,56 +1,47 @@ # coding: utf-8 from __future__ import unicode_literals -import re -import zlib + import base64 +import re import xml.etree.ElementTree +import zlib from .common import InfoExtractor +from ..utils import int_or_none class VimpleIE(InfoExtractor): IE_DESC = 'Vimple.ru' _VALID_URL = r'https?://(player.vimple.ru/iframe|vimple.ru)/(?P[a-f0-9]{10,})' _TESTS = [ - # Quality: Large, from iframe { - 'url': 'http://player.vimple.ru/iframe/b132bdfd71b546d3972f9ab9a25f201c', + 'url': 'http://vimple.ru/c0f6b1687dcd4000a97ebe70068039cf', + 'md5': '2e750a330ed211d3fd41821c6ad9a279', 'info_dict': { - 'id': 'b132bdfd71b546d3972f9ab9a25f201c', - 'title': 'great-escape-minecraft.flv', + 'id': 'c0f6b1687dcd4000a97ebe70068039cf', 'ext': 'mp4', - 'duration': 352, - 'webpage_url': 'http://vimple.ru/b132bdfd71b546d3972f9ab9a25f201c', + 'title': 'Sunset', + 'duration': 20, + 'thumbnail': 're:https?://.*?\.jpg', }, }, - # Quality: Medium, from mainpage - { - 'url': 'http://vimple.ru/a15950562888453b8e6f9572dc8600cd', - 'info_dict': { - 'id': 'a15950562888453b8e6f9572dc8600cd', - 'title': 'DB 01', - 'ext': 'flv', - 'duration': 1484, - 'webpage_url': 'http://vimple.ru/a15950562888453b8e6f9572dc8600cd', - } - }, ] - # http://jsunpack-n.googlecode.com/svn-history/r63/trunk/swf.py - def _real_extract(self, url): mobj = re.match(self._VALID_URL, url) video_id = mobj.group('id') iframe_url = 'http://player.vimple.ru/iframe/%s' % video_id - iframe = self._download_webpage(iframe_url, video_id, note='Downloading iframe', errnote='unable to fetch iframe') - player_url = self._html_search_regex(r'"(http://player.vimple.ru/flash/.+?)"', iframe, 'player url') + iframe = self._download_webpage( + iframe_url, video_id, + note='Downloading iframe', errnote='unable to fetch iframe') + player_url = self._html_search_regex( + r'"(http://player.vimple.ru/flash/.+?)"', iframe, 'player url') - player = self._request_webpage(player_url, video_id, note='Downloading swf player').read() + player = self._request_webpage( + player_url, video_id, note='Downloading swf player').read() - # http://stackoverflow.com/a/6804758 - # http://stackoverflow.com/a/12073686 player = zlib.decompress(player[8:]) xml_pieces = re.findall(b'([a-zA-Z0-9 =+/]{500})', player) @@ -79,6 +70,6 @@ class VimpleIE(InfoExtractor): 'title': video.find('Title').text, 'formats': formats, 'thumbnail': video.find('Poster').get('url'), - 'duration': int(video.get('duration')), + 'duration': int_or_none(video.get('duration')), 'webpage_url': video.find('Share').get('videoPageUrl'), }