]>
Raphaƫl G. Git Repositories - youtubedl/blob - youtube_dl/extractor/foxgay.py
1 from __future__
import unicode_literals
5 from .common
import InfoExtractor
12 class FoxgayIE(InfoExtractor
):
13 _VALID_URL
= r
'https?://(?:www\.)?foxgay\.com/videos/(?:\S+-)?(?P<id>\d+)\.shtml'
15 'url': 'http://foxgay.com/videos/fuck-turkish-style-2582.shtml',
16 'md5': '344558ccfea74d33b7adbce22e577f54',
20 'title': 'Fuck Turkish-style',
21 'description': 'md5:6ae2d9486921891efe89231ace13ffdf',
23 'thumbnail': r
're:https?://.*\.jpg$',
27 def _real_extract(self
, url
):
28 video_id
= self
._match
_id
(url
)
29 webpage
= self
._download
_webpage
(url
, video_id
)
31 title
= remove_end(self
._html
_search
_regex
(
32 r
'<title>([^<]+)</title>', webpage
, 'title'), ' - Foxgay.com')
33 description
= get_element_by_id('inf_tit', webpage
)
35 # The default user-agent with foxgay cookies leads to pages without videos
36 self
._downloader
.cookiejar
.clear('.foxgay.com')
37 # Find the URL for the iFrame which contains the actual video.
38 iframe_url
= self
._html
_search
_regex
(
39 r
'<iframe[^>]+src=([\'"])(?P<url>[^\'"]+)\
1', webpage,
40 'video frame
', group='url
')
41 iframe = self._download_webpage(
42 iframe_url, video_id, headers={'User
-Agent
': 'curl
/7.50.1'},
43 note='Downloading video frame
')
44 video_data = self._parse_json(self._search_regex(
45 r'video_data\s
*=\s
*([^
;]+);', iframe, 'video data
'), video_id)
50 } for source, resolution in zip(
51 video_data['sources
'], video_data.get('resolutions
', itertools.repeat(None)))]
53 self._sort_formats(formats)
59 'description
': description,
60 'thumbnail
': video_data.get('act_vid
', {}).get('thumb
'),