mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-06 01:22:35 +00:00
[toypics] Fix extraction
This commit is contained in:
parent
8fffac6927
commit
77d682da9d
@ -24,15 +24,16 @@ class ToypicsIE(InfoExtractor):
|
|||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
video_id = mobj.group('id')
|
video_id = mobj.group('id')
|
||||||
page = self._download_webpage(url, video_id)
|
page = self._download_webpage(url, video_id)
|
||||||
video_url = self._html_search_regex(
|
formats = self._parse_html5_media_entries(url, page, video_id)[0]['formats']
|
||||||
r'src:\s+"(http://static[0-9]+\.toypics\.net/flvideo/[^"]+)"', page, 'video URL')
|
title = self._html_search_regex([
|
||||||
title = self._html_search_regex(
|
r'<h1[^>]+class=["\']view-video-title[^>]+>([^<]+)</h',
|
||||||
r'<title>Toypics - ([^<]+)</title>', page, 'title')
|
r'<title>([^<]+) - Toypics</title>',
|
||||||
|
], page, 'title')
|
||||||
username = self._html_search_regex(
|
username = self._html_search_regex(
|
||||||
r'toypics.net/([^/"]+)" class="user-name">', page, 'username')
|
r'More videos from <strong>([^<]+)</strong>', page, 'username')
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
'url': video_url,
|
'formats': formats,
|
||||||
'title': title,
|
'title': title,
|
||||||
'uploader': username,
|
'uploader': username,
|
||||||
'age_limit': 18,
|
'age_limit': 18,
|
||||||
@ -71,7 +72,7 @@ class ToypicsUserIE(InfoExtractor):
|
|||||||
note='Downloading page %d/%d' % (n, page_count))
|
note='Downloading page %d/%d' % (n, page_count))
|
||||||
urls.extend(
|
urls.extend(
|
||||||
re.findall(
|
re.findall(
|
||||||
r'<p class="video-entry-title">\s+<a href="(https?://videos.toypics.net/view/[^"]+)">',
|
r'<div[^>]+class=["\']preview[^>]+>\s*<a[^>]+href="(https?://videos.toypics.net/view/[^"]+)"',
|
||||||
lpage))
|
lpage))
|
||||||
|
|
||||||
return {
|
return {
|
||||||
|
Loading…
Reference in New Issue
Block a user