yt-dlc/youtube_dl/extractor/c56.py

48 lines
1.3 KiB
Python
Raw Normal View History

# coding: utf-8
2014-01-07 09:19:15 +00:00
from __future__ import unicode_literals
import re
from .common import InfoExtractor
2014-01-07 09:19:15 +00:00
class C56IE(InfoExtractor):
_VALID_URL = r'https?://(?:(?:www|player)\.)?56\.com/(?:.+?/)?(?:v_|(?:play_album.+-))(?P<textid>.+?)\.(?:html|swf)'
2014-01-07 09:19:15 +00:00
IE_NAME = '56.com'
_TEST = {
'url': 'http://www.56.com/u39/v_OTM0NDA3MTY.html',
'md5': 'e59995ac63d0457783ea05f93f12a866',
'info_dict': {
'id': '93440716',
'ext': 'flv',
2014-01-07 09:19:15 +00:00
'title': '网事知多少 第32期车怒',
'duration': 283.813,
},
}
def _real_extract(self, url):
mobj = re.match(self._VALID_URL, url, flags=re.VERBOSE)
text_id = mobj.group('textid')
page = self._download_json(
'http://vxml.56.com/json/%s/' % text_id, text_id, 'Downloading video info')
info = page['info']
formats = [
{
'format_id': f['type'],
'filesize': int(f['filesize']),
'url': f['url']
} for f in info['rfiles']
]
2014-01-07 09:19:15 +00:00
self._sort_formats(formats)
2014-01-07 09:19:15 +00:00
return {
'id': info['vid'],
'title': info['Subject'],
'duration': int(info['duration']) / 1000.0,
2014-01-07 09:19:15 +00:00
'formats': formats,
'thumbnail': info.get('bimg') or info.get('img'),
}