]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/cracked.py
1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
12 class CrackedIE(InfoExtractor
):
13 _VALID_URL
= r
'https?://(?:www\.)?cracked\.com/video_(?P<id>\d+)_[\da-z-]+\.html'
15 'url': 'http://www.cracked.com/video_19070_if-animal-actors-got-e21-true-hollywood-stories.html',
16 'md5': '89b90b9824e3806ca95072c4d78f13f7',
20 'title': 'If Animal Actors Got E! True Hollywood Stories',
21 'timestamp': 1404954000,
22 'upload_date': '20140710',
26 'url': 'http://www.cracked.com/video_19006_4-plot-holes-you-didnt-notice-in-your-favorite-movies.html',
27 'md5': 'ccd52866b50bde63a6ef3b35016ba8c7',
31 'title': "4 Plot Holes You Didn't Notice in Your Favorite Movies - The Spit Take",
32 'description': 'md5:c603708c718b796fe6079e2b3351ffc7',
33 'upload_date': '20140725',
34 'uploader_id': 'Cracked',
35 'uploader': 'Cracked',
39 def _real_extract(self
, url
):
40 video_id
= self
._match
_id
(url
)
42 webpage
= self
._download
_webpage
(url
, video_id
)
44 youtube_url
= self
._search
_regex
(
45 r
'<iframe[^>]+src="((?:https?:)?//www\.youtube\.com/embed/[^"]+)"',
46 webpage
, 'youtube url', default
=None)
48 return self
.url_result(youtube_url
, 'Youtube')
50 video_url
= self
._html
_search
_regex
(
51 [r
'var\s+CK_vidSrc\s*=\s*"([^"]+)"', r
'<video\s+src="([^"]+)"'],
54 title
= self
._search
_regex
(
55 [r
'property="?og:title"?\s+content="([^"]+)"', r
'class="?title"?>([^<]+)'],
58 description
= self
._search
_regex
(
59 r
'name="?(?:og:)?description"?\s+content="([^"]+)"',
60 webpage
, 'description', default
=None)
62 timestamp
= self
._html
_search
_regex
(
63 r
'"date"\s*:\s*"([^"]+)"', webpage
, 'upload date', fatal
=False)
65 timestamp
= parse_iso8601(timestamp
[:-6])
67 view_count
= str_to_int(self
._html
_search
_regex
(
68 r
'<span\s+class="?views"? id="?viewCounts"?>([\d,\.]+) Views</span>',
69 webpage
, 'view count', fatal
=False))
70 comment_count
= str_to_int(self
._html
_search
_regex
(
71 r
'<span\s+id="?commentCounts"?>([\d,\.]+)</span>',
72 webpage
, 'comment count', fatal
=False))
74 m
= re
.search(r
'_(?P<width>\d+)X(?P<height>\d+)\.mp4$', video_url
)
76 width
= int(m
.group('width'))
77 height
= int(m
.group('height'))
85 'description': description
,
86 'timestamp': timestamp
,
87 'view_count': view_count
,
88 'comment_count': comment_count
,