]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/liveleak.py
c54519636d064ea7a0d9b0ac543c5ec190f60306
1 from __future__
import unicode_literals
5 from . common
import InfoExtractor
6 from .. utils
import int_or_none
9 class LiveLeakIE ( InfoExtractor
):
10 _VALID_URL
= r
'https?://(?:\w+\.)?liveleak\.com/view\?(?:.*?)i=(?P<id>[\w_]+)(?:.*)'
12 'url' : 'http://www.liveleak.com/view?i=757_1364311680' ,
13 'md5' : '0813c2430bea7a46bf13acf3406992f4' ,
15 'id' : '757_1364311680' ,
17 'description' : 'extremely bad day for this guy..!' ,
18 'uploader' : 'ljfriel2' ,
19 'title' : 'Most unlucky car accident' ,
20 'thumbnail' : r
're:^https?://.*\.jpg$'
23 'url' : 'http://www.liveleak.com/view?i=f93_1390833151' ,
24 'md5' : 'd3f1367d14cc3c15bf24fbfbe04b9abf' ,
26 'id' : 'f93_1390833151' ,
28 'description' : 'German Television Channel NDR does an exclusive interview with Edward Snowden. \r\n Uploaded on LiveLeak cause German Television thinks the rest of the world isn \' t intereseted in Edward Snowden.' ,
29 'uploader' : 'ARD_Stinkt' ,
30 'title' : 'German Television does first Edward Snowden Interview (ENGLISH)' ,
31 'thumbnail' : r
're:^https?://.*\.jpg$'
35 'url' : 'http://www.liveleak.com/view?i=4f7_1392687779' ,
36 'md5' : '42c6d97d54f1db107958760788c5f48f' ,
38 'id' : '4f7_1392687779' ,
40 'description' : "The guy with the cigarette seems amazingly nonchalant about the whole thing... I really hope my friends' reactions would be a bit stronger. \r\n\r\n Action-go to 0:55." ,
41 'uploader' : 'CapObveus' ,
42 'title' : 'Man is Fatally Struck by Reckless Car While Packing up a Moving Truck' ,
45 'skip' : 'Video is dead' ,
47 # Covers https://github.com/rg3/youtube-dl/pull/5983
48 # Multiple resolutions
49 'url' : 'http://www.liveleak.com/view?i=801_1409392012' ,
50 'md5' : 'c3a449dbaca5c0d1825caecd52a57d7b' ,
52 'id' : '801_1409392012' ,
54 'description' : 'Happened on 27.7.2014. \r\n At 0:53 you can see people still swimming at near beach.' ,
55 'uploader' : 'bony333' ,
56 'title' : 'Crazy Hungarian tourist films close call waterspout in Croatia' ,
57 'thumbnail' : r
're:^https?://.*\.jpg$'
60 # Covers https://github.com/rg3/youtube-dl/pull/10664#issuecomment-247439521
61 'url' : 'http://m.liveleak.com/view?i=763_1473349649' ,
62 'add_ie' : [ 'Youtube' ],
64 'id' : '763_1473349649' ,
66 'title' : 'Reporters and public officials ignore epidemic of black on asian violence in Sacramento | Colin Flaherty' ,
67 'description' : 'Colin being the warrior he is and showing the injustice Asians in Sacramento are being subjected to.' ,
69 'upload_date' : '20160908' ,
70 'uploader_id' : 'UCEbta5E_jqlZmEJsriTEtnw'
73 'skip_download' : True ,
78 def _extract_url ( webpage
):
80 r
'<iframe[^>]+src="https?://(?:\w+\.)?liveleak\.com/ll_embed\?(?:.*?)i=(?P<id>[\w_]+)(?:.*)' ,
83 return 'http://www.liveleak.com/view?i= %s ' % mobj
. group ( 'id' )
85 def _real_extract ( self
, url
):
86 video_id
= self
._ match
_ id
( url
)
87 webpage
= self
._ download
_ webpage
( url
, video_id
)
89 video_title
= self
._ og
_ search
_ title
( webpage
). replace ( 'LiveLeak.com -' , '' ). strip ()
90 video_description
= self
._ og
_ search
_ description
( webpage
)
91 video_uploader
= self
._ html
_ search
_ regex
(
92 r
'By:.*?(\w+)</a>' , webpage
, 'uploader' , fatal
= False )
93 age_limit
= int_or_none ( self
._ search
_ regex
(
94 r
'you confirm that you are ([0-9]+) years and over.' ,
95 webpage
, 'age limit' , default
= None ))
96 video_thumbnail
= self
._ og
_ search
_ thumbnail
( webpage
)
98 entries
= self
._ parse
_ html
5_ media
_ entries
( url
, webpage
, video_id
)
101 embed_url
= self
._ search
_ regex
(
102 r
'<iframe[^>]+src="((?:https?:)?//(?:www\.)?(?:prochan|youtube)\.com/embed[^"]+)"' ,
103 webpage
, 'embed URL' )
105 '_type' : 'url_transparent' ,
108 'title' : video_title
,
109 'description' : video_description
,
110 'uploader' : video_uploader
,
111 'age_limit' : age_limit
,
114 info_dict
= entries
[ 0 ]
116 for a_format
in info_dict
[ 'formats' ]:
117 if not a_format
. get ( 'height' ):
118 a_format
[ 'height' ] = self
._ search
_ regex
(
119 r
'([0-9]+)p\.mp4' , a_format
[ 'url' ], 'height label' , default
= None )
121 self
._ sort
_ formats
( info_dict
[ 'formats' ])
125 'title' : video_title
,
126 'description' : video_description
,
127 'uploader' : video_uploader
,
128 'age_limit' : age_limit
,
129 'thumbnail' : video_thumbnail
,