]>
Raphaël G. Git Repositories - youtubedl/blob - youtube_dl/extractor/rtlnow.py
2 from __future__
import unicode_literals
6 from . common
import InfoExtractor
15 class RTLnowIE ( InfoExtractor
):
16 """Information Extractor for RTL NOW, RTL2 NOW, RTL NITRO, SUPER RTL NOW, VOX NOW and n-tv NOW"""
24 (?:www\.)?rtlnitronow\.de|
25 (?:www\.)?superrtlnow\.de|
26 (?:www\.)?n-tvnow\.de)
27 /+[a-zA-Z0-9-]+/[a-zA-Z0-9-]+\.php\?
28 (?:container_id|film_id)=(?P<video_id>[0-9]+)&
29 player=1(?:&season=[0-9]+)?(?:&.*)?
34 'url' : 'http://rtl-now.rtl.de/ahornallee/folge-1.php?film_id=90419&player=1&season=1' ,
38 'title' : 'Ahornallee - Folge 1 - Der Einzug' ,
39 'description' : 'md5:ce843b6b5901d9a7f7d04d1bbcdb12de' ,
40 'upload_date' : '20070416' ,
44 'skip_download' : True ,
46 'skip' : 'Only works from Germany' ,
49 'url' : 'http://rtl2now.rtl2.de/aerger-im-revier/episode-15-teil-1.php?film_id=69756&player=1&season=2&index=5' ,
53 'title' : 'Ärger im Revier - Ein junger Ladendieb, ein handfester Streit u.a.' ,
54 'description' : 'md5:3fb247005ed21a935ffc82b7dfa70cf0' ,
55 'thumbnail' : 'http://autoimg.static-fra.de/rtl2now/219850/1500x1500/image2.jpg' ,
56 'upload_date' : '20120519' ,
60 'skip_download' : True ,
62 'skip' : 'Only works from Germany' ,
65 'url' : 'http://www.voxnow.de/voxtours/suedafrika-reporter-ii.php?film_id=13883&player=1&season=17' ,
69 'title' : 'Voxtours - Südafrika-Reporter II' ,
70 'description' : 'md5:de7f8d56be6fd4fed10f10f57786db00' ,
71 'upload_date' : '20090627' ,
75 'skip_download' : True ,
79 'url' : 'http://superrtlnow.de/medicopter-117/angst.php?film_id=99205&player=1' ,
83 'title' : 'Medicopter 117 - Angst!' ,
84 'description' : 're:^Im Therapiezentrum \' Sonnalm \' kommen durch eine Unachtsamkeit die für die B.handlung mit Phobikern gehaltenen Voglespinnen frei\. Eine Ausreißerin' ,
85 'thumbnail' : 'http://autoimg.static-fra.de/superrtlnow/287529/1500x1500/image2.jpg' ,
86 'upload_date' : '20080928' ,
90 'skip_download' : True ,
94 'url' : 'http://rtl-now.rtl.de/der-bachelor/folge-4.php?film_id=188729&player=1&season=5' ,
98 'upload_date' : '20150204' ,
99 'description' : 'md5:5e1ce23095e61a79c166d134b683cecc' ,
100 'title' : 'Der Bachelor - Folge 4' ,
103 'url' : 'http://www.n-tvnow.de/deluxe-alles-was-spass-macht/thema-ua-luxushotel-fuer-vierbeiner.php?container_id=153819&player=1&season=0' ,
104 'only_matching' : True ,
108 def _real_extract ( self
, url
):
109 mobj
= re
. match ( self
._ VALID
_U RL
, url
)
110 video_page_url
= 'http:// %s /' % mobj
. group ( 'domain' )
111 video_id
= mobj
. group ( 'video_id' )
113 webpage
= self
._ download
_ webpage
( 'http://' + mobj
. group ( 'url' ), video_id
)
115 mobj
= re
. search ( r
'(?s)<div style="margin-left: 20px; font-size: 13px;">(.*?)<div id="playerteaser">' , webpage
)
117 raise ExtractorError ( clean_html ( mobj
. group ( 1 )), expected
= True )
119 title
= self
._ og
_ search
_ title
( webpage
)
120 description
= self
._ og
_ search
_ description
( webpage
)
121 thumbnail
= self
._ og
_ search
_ thumbnail
( webpage
, default
= None )
123 upload_date
= unified_strdate ( self
._ html
_ search
_ meta
( 'uploadDate' , webpage
, 'upload date' ))
125 mobj
= re
. search ( r
'<meta itemprop="duration" content="PT(?P<seconds>\d+)S" />' , webpage
)
126 duration
= int ( mobj
. group ( 'seconds' )) if mobj
else None
128 playerdata_url
= self
._ html
_ search
_ regex
(
129 r
"'playerdata': '(?P<playerdata_url>[^']+)'" , webpage
, 'playerdata_url' )
131 playerdata
= self
._ download
_ xml
( playerdata_url
, video_id
, 'Downloading player data XML' )
133 videoinfo
= playerdata
. find ( './playlist/videoinfo' )
136 for filename
in videoinfo
. findall ( 'filename' ):
137 mobj
= re
. search ( r
'(?P<url>rtmpe://(?:[^/]+/) {2} )(?P<play_path>.+)' , filename
. text
)
140 'url' : mobj
. group ( 'url' ),
141 'play_path' : 'mp4:' + mobj
. group ( 'play_path' ),
142 'page_url' : video_page_url
,
143 'player_url' : video_page_url
+ 'includes/vodplayer.swf' ,
146 mobj
= re
. search ( r
'.*/(?P<hoster>[^/]+)/videos/(?P<play_path>.+)\.f4m' , filename
. text
)
149 'url' : 'rtmpe://fms.rtl.de/' + mobj
. group ( 'hoster' ),
150 'play_path' : 'mp4:' + mobj
. group ( 'play_path' ),
152 'player_url' : video_page_url
+ 'includes/vodplayer.swf' ,
156 'url' : filename
. text
,
159 'width' : int_or_none ( filename
. get ( 'width' )),
160 'height' : int_or_none ( filename
. get ( 'height' )),
161 'vbr' : int_or_none ( filename
. get ( 'bitrate' )),
169 'description' : description
,
170 'thumbnail' : thumbnail
,
171 'upload_date' : upload_date
,
172 'duration' : duration
,