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.

75 lines
3.1 KiB

  1. # coding: utf-8
  2. from __future__ import unicode_literals
  3. import re
  4. from .common import InfoExtractor
  5. from ..compat import compat_urlparse
  6. from ..utils import (
  7. get_element_by_attribute,
  8. qualities,
  9. unescapeHTML,
  10. )
  11. class OraTVIE(InfoExtractor):
  12. _VALID_URL = r'https?://(?:www\.)?ora\.tv/([^/]+/)*(?P<id>[^/\?#]+)'
  13. _TEST = {
  14. 'url': 'https://www.ora.tv/larrykingnow/2015/12/16/vine-youtube-stars-zach-king-king-bach-on-their-viral-videos-0_36jupg6090pq',
  15. 'md5': 'fa33717591c631ec93b04b0e330df786',
  16. 'info_dict': {
  17. 'id': '50178',
  18. 'ext': 'mp4',
  19. 'title': 'Vine & YouTube Stars Zach King & King Bach On Their Viral Videos!',
  20. 'description': 'md5:ebbc5b1424dd5dba7be7538148287ac1',
  21. 'duration': 1477,
  22. }
  23. }
  24. def _real_extract(self, url):
  25. display_id = self._match_id(url)
  26. webpage = self._download_webpage(url, display_id)
  27. video_data = self._search_regex(
  28. r'"current"\s*:\s*({[^}]+?})', webpage, 'current video')
  29. m3u8_url = self._search_regex(
  30. r'"hls_stream"\s*:\s*"([^"]+)', video_data, 'm3u8 url', None)
  31. if m3u8_url:
  32. formats = self._extract_m3u8_formats(
  33. m3u8_url, display_id, 'mp4', 'm3u8_native',
  34. m3u8_id='hls', fatal=False)
  35. # similar to GameSpotIE
  36. m3u8_path = compat_urlparse.urlparse(m3u8_url).path
  37. QUALITIES_RE = r'((,[a-z]+\d+)+,?)'
  38. available_qualities = self._search_regex(
  39. QUALITIES_RE, m3u8_path, 'qualities').strip(',').split(',')
  40. http_path = m3u8_path[1:].split('/', 1)[1]
  41. http_template = re.sub(QUALITIES_RE, r'%s', http_path)
  42. http_template = http_template.replace('.csmil/master.m3u8', '')
  43. http_template = compat_urlparse.urljoin(
  44. 'http://videocdn-pmd.ora.tv/', http_template)
  45. preference = qualities(
  46. ['mobile400', 'basic400', 'basic600', 'sd900', 'sd1200', 'sd1500', 'hd720', 'hd1080'])
  47. for q in available_qualities:
  48. formats.append({
  49. 'url': http_template % q,
  50. 'format_id': q,
  51. 'preference': preference(q),
  52. })
  53. self._sort_formats(formats)
  54. else:
  55. return self.url_result(self._search_regex(
  56. r'"youtube_id"\s*:\s*"([^"]+)', webpage, 'youtube id'), 'Youtube')
  57. return {
  58. 'id': self._search_regex(
  59. r'"video_id"\s*:\s*(\d+)', video_data, 'video id'),
  60. 'display_id': display_id,
  61. 'title': unescapeHTML(self._og_search_title(webpage)),
  62. 'description': get_element_by_attribute(
  63. 'class', 'video_txt_decription', webpage),
  64. 'thumbnail': self._proto_relative_url(self._search_regex(
  65. r'"thumb"\s*:\s*"([^"]+)', video_data, 'thumbnail', None)),
  66. 'duration': int(self._search_regex(
  67. r'"duration"\s*:\s*(\d+)', video_data, 'duration')),
  68. 'formats': formats,
  69. }