]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/fox.py
9f406b17eebfab6248f0a6e0d4722151abd7add9
2 from __future__
import unicode_literals
4 from . common
import InfoExtractor
11 class FOXIE ( InfoExtractor
):
12 _VALID_URL
= r
'https?://(?:www\.)?fox\.com/watch/(?P<id>[0-9]+)'
14 'url' : 'http://www.fox.com/watch/255180355939/7684182528' ,
15 'md5' : 'ebd296fcc41dd4b19f8115d8461a3165' ,
19 'title' : 'Official Trailer: Gotham' ,
20 'description' : 'Tracing the rise of the great DC Comics Super-Villains and vigilantes, Gotham reveals an entirely new chapter that has never been told.' ,
22 'timestamp' : 1400020798 ,
23 'upload_date' : '20140513' ,
24 'uploader' : 'NEWA-FNG-FOXCOM' ,
26 'add_ie' : [ 'ThePlatform' ],
29 def _real_extract ( self
, url
):
30 video_id
= self
._ match
_ id
( url
)
31 webpage
= self
._ download
_ webpage
( url
, video_id
)
33 release_url
= self
._ parse
_ json
( self
._ search
_ regex
(
34 r
'"fox_pdk_player"\s*:\s*({[^}]+?})' , webpage
, 'fox_pdk_player' ),
35 video_id
)[ 'release_url' ]
38 '_type' : 'url_transparent' ,
39 'ie_key' : 'ThePlatform' ,
40 'url' : smuggle_url ( update_url_query (
41 release_url
, { 'switch' : 'http' }), { 'force_smil_url' : True }),