]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/vrt.py
   2 from __future__ 
import unicode_literals
 
   6 from .common 
import InfoExtractor
 
  12 class VRTIE(InfoExtractor
): 
  13     IE_DESC 
= 'deredactie.be, sporza.be, cobra.be and cobra.canvas.be' 
  14     _VALID_URL 
= r
'https?://(?:deredactie|sporza|cobra(?:\.canvas)?)\.be/cm/(?:[^/]+/)+(?P<id>[^/]+)/*' 
  18             'url': 'http://deredactie.be/cm/vrtnieuws/videozone/programmas/journaal/EP_141025_JOL', 
  19             'md5': '4cebde1eb60a53782d4f3992cbd46ec8', 
  23                 'title': 'Het journaal L - 25/10/14', 
  25                 'timestamp': 1414271750.949, 
  26                 'upload_date': '20141025', 
  29             'skip': 'HTTP Error 404: Not Found', 
  33             'url': 'http://sporza.be/cm/sporza/videozone/programmas/extratime/EP_141020_Extra_time', 
  34             'md5': '11f53088da9bf8e7cfc42456697953ff', 
  38                 'title': 'Bekijk Extra Time van 20 oktober', 
  39                 'description': 'md5:83ac5415a4f1816c6a93f8138aef2426', 
  40                 'timestamp': 1413835980.560, 
  41                 'upload_date': '20141020', 
  44             'skip': 'HTTP Error 404: Not Found', 
  48             'url': 'http://cobra.be/cm/cobra/videozone/rubriek/film-videozone/141022-mv-ellis-cafecorsari', 
  49             'md5': '78a2b060a5083c4f055449a72477409d', 
  53                 'title': 'Bret Easton Ellis in Café Corsari', 
  54                 'description': 'md5:f699986e823f32fd6036c1855a724ee9', 
  55                 'timestamp': 1413967500.494, 
  56                 'upload_date': '20141022', 
  59             'skip': 'HTTP Error 404: Not Found', 
  63             'url': 'http://deredactie.be/cm/vrtnieuws/videozone/nieuws/cultuurenmedia/1.2622957', 
  64             'md5': 'b8b93da1df1cea6c8556255a796b7d61', 
  68                 'title': 'ROGUE ONE: A STAR WARS STORY Official Teaser Trailer', 
  69                 'description': 'md5:8e468944dce15567a786a67f74262583', 
  70                 'uploader': 'Star Wars', 
  71                 'uploader_id': 'starwars', 
  72                 'upload_date': '20160407', 
  74             'add_ie': ['Youtube'], 
  77             'url': 'http://cobra.canvas.be/cm/cobra/videozone/rubriek/film-videozone/1.2377055', 
  81                 'title': 'Cafe Derby', 
  82                 'description': 'Lenny Van Wesemael debuteert met de langspeelfilm Café Derby. Een waar gebeurd maar ook verzonnen verhaal.', 
  83                 'upload_date': '20150626', 
  84                 'timestamp': 1435305240.769, 
  88                 'skip_download': True, 
  93     def _real_extract(self
, url
): 
  94         video_id 
= self
._match
_id
(url
) 
  96         webpage 
= self
._download
_webpage
(url
, video_id
) 
  98         video_id 
= self
._search
_regex
( 
  99             r
'data-video-id="([^"]+)_[^"]+"', webpage
, 'video id', fatal
=False) 
 101         src 
= self
._search
_regex
( 
 102             r
'data-video-src="([^"]+)"', webpage
, 'video src', default
=None) 
 104         video_type 
= self
._search
_regex
( 
 105             r
'data-video-type="([^"]+)"', webpage
, 'video type', default
=None) 
 107         if video_type 
== 'YouTubeVideo': 
 108             return self
.url_result(src
, 'Youtube') 
 113             r
'data-video-iphone-server="(?P<server>[^"]+)"\s+data-video-iphone-path="(?P<path>[^"]+)"', 
 116             formats
.extend(self
._extract
_m
3u8_formats
( 
 117                 '%s/%s' % (mobj
.group('server'), mobj
.group('path')), 
 118                 video_id
, 'mp4', m3u8_id
='hls', fatal
=False)) 
 121             formats 
= self
._extract
_wowza
_formats
(src
, video_id
) 
 122             if 'data-video-geoblocking="true"' not in webpage
: 
 124                     if f
['url'].startswith('rtsp://'): 
 125                         http_format 
= f
.copy() 
 127                             'url': f
['url'].replace('rtsp://', 'http://').replace('vod.', 'download.').replace('/_definst_/', '/').replace('mp4:', ''), 
 128                             'format_id': f
['format_id'].replace('rtsp', 'http'), 
 131                         formats
.append(http_format
) 
 133         if not formats 
and 'data-video-geoblocking="true"' in webpage
: 
 134             self
.raise_geo_restricted('This video is only available in Belgium') 
 136         self
._sort
_formats
(formats
) 
 138         title 
= self
._og
_search
_title
(webpage
) 
 139         description 
= self
._og
_search
_description
(webpage
, default
=None) 
 140         thumbnail 
= self
._og
_search
_thumbnail
(webpage
) 
 141         timestamp 
= float_or_none(self
._search
_regex
( 
 142             r
'data-video-sitestat-pubdate="(\d+)"', webpage
, 'timestamp', fatal
=False), 1000) 
 143         duration 
= float_or_none(self
._search
_regex
( 
 144             r
'data-video-duration="(\d+)"', webpage
, 'duration', fatal
=False), 1000) 
 149             'description': description
, 
 150             'thumbnail': thumbnail
, 
 151             'timestamp': timestamp
, 
 152             'duration': duration
,