yt-dlc/youtube_dl/extractor/vimple.py

85 lines
2.8 KiB
Python
Raw Normal View History

2014-06-12 07:27:23 +00:00
# coding: utf-8
from __future__ import unicode_literals
2014-06-13 03:08:06 +00:00
import re
import zlib
import base64
import xml.etree.ElementTree
2014-06-12 07:27:23 +00:00
from .common import InfoExtractor
2014-06-13 03:08:06 +00:00
2014-06-12 07:27:23 +00:00
class VimpleIE(InfoExtractor):
IE_DESC = 'Vimple.ru'
2014-06-13 03:08:06 +00:00
_VALID_URL = r'https?://(player.vimple.ru/iframe|vimple.ru)/(?P<id>[a-f0-9]{10,})'
2014-06-12 07:27:23 +00:00
_TESTS = [
2014-06-13 03:08:06 +00:00
# Quality: Large, from iframe
2014-06-12 07:27:23 +00:00
{
'url': 'http://player.vimple.ru/iframe/b132bdfd71b546d3972f9ab9a25f201c',
'info_dict': {
'id': 'b132bdfd71b546d3972f9ab9a25f201c',
'title': 'great-escape-minecraft.flv',
2014-06-13 03:08:06 +00:00
'ext': 'mp4',
2014-06-12 07:27:23 +00:00
'duration': 352,
'webpage_url': 'http://vimple.ru/b132bdfd71b546d3972f9ab9a25f201c',
2014-06-13 03:08:06 +00:00
},
},
# 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',
}
},
2014-06-12 07:27:23 +00:00
]
2014-06-13 03:08:06 +00:00
# http://jsunpack-n.googlecode.com/svn-history/r63/trunk/swf.py
2014-06-12 07:27:23 +00:00
def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url)
video_id = mobj.group('id')
2014-06-13 03:08:06 +00:00
2014-06-12 07:27:23 +00:00
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')
2014-06-13 03:08:06 +00:00
2014-06-12 07:27:23 +00:00
player = self._request_webpage(player_url, video_id, note='Downloading swf player').read()
2014-06-13 03:08:06 +00:00
# http://stackoverflow.com/a/6804758
# http://stackoverflow.com/a/12073686
2014-06-12 07:27:23 +00:00
player = zlib.decompress(player[8:])
2014-06-13 02:33:50 +00:00
xml_pieces = re.findall(b'([a-zA-Z0-9 =+/]{500})', player)
2014-06-12 07:27:23 +00:00
xml_pieces = [piece[1:-1] for piece in xml_pieces]
2014-06-13 03:08:06 +00:00
2014-06-12 07:27:23 +00:00
xml_data = b''.join(xml_pieces)
xml_data = base64.b64decode(xml_data)
2014-06-13 03:08:06 +00:00
2014-06-12 07:27:23 +00:00
xml_data = xml.etree.ElementTree.fromstring(xml_data)
2014-06-13 03:08:06 +00:00
2014-06-12 07:27:23 +00:00
video = xml_data.find('Video')
quality = video.get('quality')
q_tag = video.find(quality.capitalize())
formats = [
{
'url': q_tag.get('url'),
'tbr': int(q_tag.get('bitrate')),
'filesize': int(q_tag.get('filesize')),
'format_id': quality,
},
]
return {
'id': video_id,
'title': video.find('Title').text,
'formats': formats,
'thumbnail': video.find('Poster').get('url'),
'duration': int(video.get('duration')),
'webpage_url': video.find('Share').get('videoPageUrl'),
}