You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

98 lines
4.0 KiB

  1. import re
  2. import json
  3. import xml.etree.ElementTree
  4. from .common import InfoExtractor
  5. from ..utils import (
  6. compat_urllib_parse_urlparse,
  7. compat_urlparse,
  8. xpath_with_ns,
  9. )
  10. class LivestreamIE(InfoExtractor):
  11. IE_NAME = u'livestream'
  12. _VALID_URL = r'http://new.livestream.com/.*?/(?P<event_name>.*?)(/videos/(?P<id>\d+))?/?$'
  13. _TEST = {
  14. u'url': u'http://new.livestream.com/CoheedandCambria/WebsterHall/videos/4719370',
  15. u'file': u'4719370.mp4',
  16. u'md5': u'0d2186e3187d185a04b3cdd02b828836',
  17. u'info_dict': {
  18. u'title': u'Live from Webster Hall NYC',
  19. u'upload_date': u'20121012',
  20. }
  21. }
  22. def _extract_video_info(self, video_data):
  23. video_url = video_data.get('progressive_url_hd') or video_data.get('progressive_url')
  24. return {'id': video_data['id'],
  25. 'url': video_url,
  26. 'ext': 'mp4',
  27. 'title': video_data['caption'],
  28. 'thumbnail': video_data['thumbnail_url'],
  29. 'upload_date': video_data['updated_at'].replace('-','')[:8],
  30. }
  31. def _real_extract(self, url):
  32. mobj = re.match(self._VALID_URL, url)
  33. video_id = mobj.group('id')
  34. event_name = mobj.group('event_name')
  35. webpage = self._download_webpage(url, video_id or event_name)
  36. if video_id is None:
  37. # This is an event page:
  38. config_json = self._search_regex(r'window.config = ({.*?});',
  39. webpage, u'window config')
  40. info = json.loads(config_json)['event']
  41. videos = [self._extract_video_info(video_data['data'])
  42. for video_data in info['feed']['data'] if video_data['type'] == u'video']
  43. return self.playlist_result(videos, info['id'], info['full_name'])
  44. else:
  45. og_video = self._og_search_video_url(webpage, name=u'player url')
  46. query_str = compat_urllib_parse_urlparse(og_video).query
  47. query = compat_urlparse.parse_qs(query_str)
  48. api_url = query['play_url'][0].replace('.smil', '')
  49. info = json.loads(self._download_webpage(api_url, video_id,
  50. u'Downloading video info'))
  51. return self._extract_video_info(info)
  52. # The original version of Livestream uses a different system
  53. class LivestreamOriginalIE(InfoExtractor):
  54. IE_NAME = u'livestream:original'
  55. _VALID_URL = r'https?://www\.livestream\.com/(?P<user>[^/]+)/video\?.*?clipId=(?P<id>.*?)(&|$)'
  56. _TEST = {
  57. u'url': u'http://www.livestream.com/dealbook/video?clipId=pla_8aa4a3f1-ba15-46a4-893b-902210e138fb',
  58. u'info_dict': {
  59. u'id': u'pla_8aa4a3f1-ba15-46a4-893b-902210e138fb',
  60. u'ext': u'flv',
  61. u'title': u'Spark 1 (BitCoin) with Cameron Winklevoss & Tyler Winklevoss of Winklevoss Capital',
  62. },
  63. u'params': {
  64. # rtmp
  65. u'skip_download': True,
  66. },
  67. }
  68. def _real_extract(self, url):
  69. mobj = re.match(self._VALID_URL, url)
  70. video_id = mobj.group('id')
  71. user = mobj.group('user')
  72. api_url = 'http://x{0}x.api.channel.livestream.com/2.0/clipdetails?extendedInfo=true&id={1}'.format(user, video_id)
  73. api_response = self._download_webpage(api_url, video_id)
  74. info = xml.etree.ElementTree.fromstring(api_response.encode('utf-8'))
  75. item = info.find('channel').find('item')
  76. ns = {'media': 'http://search.yahoo.com/mrss'}
  77. thumbnail_url = item.find(xpath_with_ns('media:thumbnail', ns)).attrib['url']
  78. # Remove the extension and number from the path (like 1.jpg)
  79. path = self._search_regex(r'(user-files/.+)_.*?\.jpg$', thumbnail_url, u'path')
  80. return {
  81. 'id': video_id,
  82. 'title': item.find('title').text,
  83. 'url': 'rtmp://extondemand.livestream.com/ondemand',
  84. 'play_path': 'mp4:trans/dv15/mogulus-{0}.mp4'.format(path),
  85. 'ext': 'flv',
  86. 'thumbnail': thumbnail_url,
  87. }