sina.py 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..compat import compat_urllib_parse_urlencode
  6. from ..utils import sanitized_Request
  7. class SinaIE(InfoExtractor):
  8. _VALID_URL = r'''(?x)https?://(.*?\.)?video\.sina\.com\.cn/
  9. (
  10. (.+?/(((?P<pseudo_id>\d+).html)|(.*?(\#|(vid=)|b/)(?P<id>\d+?)($|&|\-))))
  11. |
  12. # This is used by external sites like Weibo
  13. (api/sinawebApi/outplay.php/(?P<token>.+?)\.swf)
  14. )
  15. '''
  16. _TESTS = [
  17. {
  18. 'url': 'http://video.sina.com.cn/news/vlist/zt/chczlj2013/?opsubject_id=top12#110028898',
  19. 'md5': 'd65dd22ddcf44e38ce2bf58a10c3e71f',
  20. 'info_dict': {
  21. 'id': '110028898',
  22. 'ext': 'flv',
  23. 'title': '《中国新闻》 朝鲜要求巴拿马立即释放被扣船员',
  24. }
  25. },
  26. {
  27. 'url': 'http://video.sina.com.cn/v/b/101314253-1290078633.html',
  28. 'info_dict': {
  29. 'id': '101314253',
  30. 'ext': 'flv',
  31. 'title': '军方提高对朝情报监视级别',
  32. },
  33. },
  34. ]
  35. def _extract_video(self, video_id):
  36. data = compat_urllib_parse_urlencode({'vid': video_id})
  37. url_doc = self._download_xml('http://v.iask.com/v_play.php?%s' % data,
  38. video_id, 'Downloading video url')
  39. image_page = self._download_webpage(
  40. 'http://interface.video.sina.com.cn/interface/common/getVideoImage.php?%s' % data,
  41. video_id, 'Downloading thumbnail info')
  42. return {'id': video_id,
  43. 'url': url_doc.find('./durl/url').text,
  44. 'ext': 'flv',
  45. 'title': url_doc.find('./vname').text,
  46. 'thumbnail': image_page.split('=')[1],
  47. }
  48. def _real_extract(self, url):
  49. mobj = re.match(self._VALID_URL, url)
  50. video_id = mobj.group('id')
  51. if mobj.group('token') is not None:
  52. # The video id is in the redirected url
  53. self.to_screen('Getting video id')
  54. request = sanitized_Request(url)
  55. request.get_method = lambda: 'HEAD'
  56. (_, urlh) = self._download_webpage_handle(request, 'NA', False)
  57. return self._real_extract(urlh.geturl())
  58. elif video_id is None:
  59. pseudo_id = mobj.group('pseudo_id')
  60. webpage = self._download_webpage(url, pseudo_id)
  61. video_id = self._search_regex(r'vid:\'(\d+?)\'', webpage, 'video id')
  62. return self._extract_video(video_id)