mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 03:10:38 +00:00
[nuvid] Simplify (#2901)
This commit is contained in:
parent
b65c3e77e8
commit
87724af7a8
@ -1,39 +1,48 @@
|
|||||||
|
from __future__ import unicode_literals
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
|
|
||||||
|
|
||||||
class NuvidIE(InfoExtractor):
|
class NuvidIE(InfoExtractor):
|
||||||
_VALID_URL = r'^https?://(?:www|m)\.nuvid\.com/video/(?P<videoid>\d+)'
|
_VALID_URL = r'^https?://(?:www|m)\.nuvid\.com/video/(?P<id>[0-9]+)'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
u'url': u'http://m.nuvid.com/video/1310741/',
|
'url': 'http://m.nuvid.com/video/1310741/',
|
||||||
u'file': u'1310741.mp4',
|
'md5': 'eab207b7ac4fccfb4e23c86201f11277',
|
||||||
u'md5': u'eab207b7ac4fccfb4e23c86201f11277',
|
'info_dict': {
|
||||||
u'info_dict': {
|
'id': '1310741',
|
||||||
u"title": u"Horny babes show their awesome bodeis and",
|
'ext': 'mp4',
|
||||||
u"age_limit": 18,
|
"title": "Horny babes show their awesome bodeis and",
|
||||||
|
"age_limit": 18,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
mobj = re.match(self._VALID_URL, url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
|
video_id = mobj.group('id')
|
||||||
|
|
||||||
video_id = mobj.group('videoid')
|
murl = url.replace('://www.', '://m.')
|
||||||
|
|
||||||
# Get webpage content
|
|
||||||
murl = url.replace('//www.', '//m.')
|
|
||||||
webpage = self._download_webpage(murl, video_id)
|
webpage = self._download_webpage(murl, video_id)
|
||||||
|
|
||||||
video_title = self._html_search_regex(r'<div class="title">\s+<h2[^>]*>([^<]+)</h2>', webpage, 'video_title').strip()
|
title = self._html_search_regex(
|
||||||
|
r'<div class="title">\s+<h2[^>]*>([^<]+)</h2>',
|
||||||
|
webpage, 'title').strip()
|
||||||
|
|
||||||
video_url = 'http://m.nuvid.com'+self._html_search_regex(r'href="(/mp4/[^"]+)"[^>]*data-link_type="mp4"', webpage, 'video_url')
|
url_end = self._html_search_regex(
|
||||||
|
r'href="(/mp4/[^"]+)"[^>]*data-link_type="mp4"',
|
||||||
|
webpage, 'video_url')
|
||||||
|
video_url = 'http://m.nuvid.com' + url_end
|
||||||
|
|
||||||
video_thumb = self._html_search_regex(r'href="(/thumbs/[^"]+)"[^>]*data-link_type="thumbs"', webpage, 'video_thumb')
|
thumbnail = self._html_search_regex(
|
||||||
|
r'href="(/thumbs/[^"]+)"[^>]*data-link_type="thumbs"',
|
||||||
|
webpage, 'thumbnail URL', fatal=False)
|
||||||
|
|
||||||
info = {'id': video_id,
|
return {
|
||||||
'url': video_url,
|
'id': video_id,
|
||||||
'title': video_title,
|
'url': video_url,
|
||||||
'thumbnail': video_thumb,
|
'ext': 'mp4',
|
||||||
'ext': 'mp4',
|
'title': title,
|
||||||
'age_limit': 18}
|
'thumbnail': thumbnail,
|
||||||
|
'age_limit': 18,
|
||||||
return [info]
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user