]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/ora.py
   2 from __future__ 
import unicode_literals
 
   5 from .common 
import InfoExtractor
 
   6 from ..compat 
import compat_urlparse
 
   8     get_element_by_attribute
, 
  14 class OraTVIE(InfoExtractor
): 
  15     _VALID_URL 
= r
'https?://(?:www\.)?ora\.tv/([^/]+/)*(?P<id>[^/\?#]+)' 
  17         'url': 'https://www.ora.tv/larrykingnow/2015/12/16/vine-youtube-stars-zach-king-king-bach-on-their-viral-videos-0_36jupg6090pq', 
  18         'md5': 'fa33717591c631ec93b04b0e330df786', 
  22             'title': 'Vine & YouTube Stars Zach King & King Bach On Their Viral Videos!', 
  23             'description': 'md5:ebbc5b1424dd5dba7be7538148287ac1', 
  27     def _real_extract(self
, url
): 
  28         display_id 
= self
._match
_id
(url
) 
  29         webpage 
= self
._download
_webpage
(url
, display_id
) 
  31         video_data 
= self
._search
_regex
( 
  32             r
'"(?:video|current)"\s*:\s*({[^}]+?})', webpage
, 'current video') 
  33         m3u8_url 
= self
._search
_regex
( 
  34             r
'hls_stream"?\s*:\s*"([^"]+)', video_data
, 'm3u8 url', None) 
  36             formats 
= self
._extract
_m
3u8_formats
( 
  37                 m3u8_url
, display_id
, 'mp4', 'm3u8_native', 
  38                 m3u8_id
='hls', fatal
=False) 
  39             # similar to GameSpotIE 
  40             m3u8_path 
= compat_urlparse
.urlparse(m3u8_url
).path
 
  41             QUALITIES_RE 
= r
'((,[a-z]+\d+)+,?)' 
  42             available_qualities 
= self
._search
_regex
( 
  43                 QUALITIES_RE
, m3u8_path
, 'qualities').strip(',').split(',') 
  44             http_path 
= m3u8_path
[1:].split('/', 1)[1] 
  45             http_template 
= re
.sub(QUALITIES_RE
, r
'%s', http_path
) 
  46             http_template 
= http_template
.replace('.csmil/master.m3u8', '') 
  47             http_template 
= compat_urlparse
.urljoin( 
  48                 'http://videocdn-pmd.ora.tv/', http_template
) 
  49             preference 
= qualities( 
  50                 ['mobile400', 'basic400', 'basic600', 'sd900', 'sd1200', 'sd1500', 'hd720', 'hd1080']) 
  51             for q 
in available_qualities
: 
  53                     'url': http_template 
% q
, 
  55                     'preference': preference(q
), 
  57             self
._sort
_formats
(formats
) 
  59             return self
.url_result(self
._search
_regex
( 
  60                 r
'"youtube_id"\s*:\s*"([^"]+)', webpage
, 'youtube id'), 'Youtube') 
  63             'id': self
._search
_regex
( 
  64                 r
'"id"\s*:\s*(\d+)', video_data
, 'video id', default
=display_id
), 
  65             'display_id': display_id
, 
  66             'title': unescapeHTML(self
._og
_search
_title
(webpage
)), 
  67             'description': get_element_by_attribute( 
  68                 'class', 'video_txt_decription', webpage
), 
  69             'thumbnail': self
._proto
_relative
_url
(self
._search
_regex
( 
  70                 r
'"thumb"\s*:\s*"([^"]+)', video_data
, 'thumbnail', None)),