mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-01 23:12:40 +00:00
74 lines
3 KiB
Python
74 lines
3 KiB
Python
# coding: utf-8
|
|
from __future__ import unicode_literals
|
|
|
|
import re
|
|
from .common import InfoExtractor
|
|
from ..compat import compat_urlparse
|
|
from ..utils import (
|
|
get_element_by_attribute,
|
|
js_to_json,
|
|
qualities,
|
|
unescapeHTML,
|
|
)
|
|
|
|
|
|
class OraTVIE(InfoExtractor):
|
|
_VALID_URL = r'https?://(?:www\.)?(ora\.tv|unsafespeech\.com)/([^/]+/)*(?P<id>[^/\?#]+)'
|
|
_TEST = {
|
|
'url': 'https://www.ora.tv/larrykingnow/2015/12/16/vine-youtube-stars-zach-king-king-bach-on-their-viral-videos-0_36jupg6090pq',
|
|
'md5': 'fa33717591c631ec93b04b0e330df786',
|
|
'info_dict': {
|
|
'id': '50178',
|
|
'ext': 'mp4',
|
|
'title': 'Vine & YouTube Stars Zach King & King Bach On Their Viral Videos!',
|
|
'description': 'md5:ebbc5b1424dd5dba7be7538148287ac1',
|
|
}
|
|
}
|
|
|
|
def _real_extract(self, url):
|
|
display_id = self._match_id(url)
|
|
webpage = self._download_webpage(url, display_id)
|
|
|
|
ora_meta = self._parse_json(self._search_regex(
|
|
r'(?s);\s*ora_meta = ({.*?});</script>', webpage, 'ora_meta'), display_id,
|
|
transform_source=lambda data: js_to_json(re.sub('":(document|\().*?(:false|\(\)),', '":null,', data)))
|
|
|
|
video_data = ora_meta.get('video', ora_meta.get('current'))
|
|
m3u8_url = video_data['hls_stream']
|
|
|
|
if m3u8_url:
|
|
formats = self._extract_m3u8_formats(
|
|
m3u8_url, display_id, 'mp4', 'm3u8_native',
|
|
m3u8_id='hls', fatal=False)
|
|
# similar to GameSpotIE
|
|
m3u8_path = compat_urlparse.urlparse(m3u8_url).path
|
|
QUALITIES_RE = r'((,[a-z]+\d+)+,?)'
|
|
available_qualities = self._search_regex(
|
|
QUALITIES_RE, m3u8_path, 'qualities').strip(',').split(',')
|
|
http_path = m3u8_path[1:].split('/', 1)[1]
|
|
http_template = re.sub(QUALITIES_RE, r'%s', http_path)
|
|
http_template = http_template.replace('.csmil/master.m3u8', '')
|
|
http_template = compat_urlparse.urljoin(
|
|
'http://videocdn-pmd.ora.tv/', http_template)
|
|
preference = qualities(
|
|
['mobile400', 'basic400', 'basic600', 'sd900', 'sd1200', 'sd1500', 'hd720', 'hd1080'])
|
|
for q in available_qualities:
|
|
formats.append({
|
|
'url': http_template % q,
|
|
'format_id': q,
|
|
'preference': preference(q),
|
|
})
|
|
self._sort_formats(formats)
|
|
else:
|
|
return self.url_result(self._search_regex(
|
|
r'"youtube_id"\s*:\s*"([^"]+)', webpage, 'youtube id'), 'Youtube')
|
|
|
|
return {
|
|
'id': video_data.get('id', display_id),
|
|
'display_id': display_id,
|
|
'title': unescapeHTML(self._og_search_title(webpage)),
|
|
'description': get_element_by_attribute(
|
|
'class', 'video_txt_decription', webpage),
|
|
'thumbnail': self._proto_relative_url(video_data.get('thumb')),
|
|
'formats': formats,
|
|
}
|