mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-27 19:04:32 +01:00
Added URL
This commit is contained in:
parent
12814567ca
commit
ec80366ebc
@ -7,13 +7,14 @@ from .common import InfoExtractor
|
|||||||
class GamerDVRIE(InfoExtractor):
|
class GamerDVRIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?gamerdvr\.com/gamer/\S+/video/(?P<id>\d+)'
|
_VALID_URL = r'https?://(?:www\.)?gamerdvr\.com/gamer/\S+/video/(?P<id>\d+)'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'https://gamerdvr.com/gamer/videogamer3/video/82254474',
|
'url': 'https://gamerdvr.com/gamer/videogamer3/video/83193307',
|
||||||
'md5': 'TODO: md5 sum of the first 10241 bytes of the video file (use --test)',
|
'md5': 'f747c74fbc7617a70d8c071927623cde', #a716d4561cf5a2ac373a5deda4d89a47
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '42',
|
'id': '83193307',
|
||||||
'ext': 'mp4',
|
'ext': 'mp4',
|
||||||
'title': 'Video title goes here',
|
'title': "videogamer3's Xbox Call of Duty®: Modern Warfare® clip 83193307. Find your Xbox clips on GamerDVR.com",
|
||||||
'thumbnail': r're:^https?://.*\.jpg$',
|
'description': "videogamer3's Xbox Call of Duty®: Modern Warfare® clips and gameplay playing Call of Duty®: Modern Warfare®. All your Xbox clips and screenshots on GamerDVR.com. View, manage, and share easily!",
|
||||||
|
'uploader': 'videogamer3',
|
||||||
# TODO more properties, either as:
|
# TODO more properties, either as:
|
||||||
# * A value
|
# * A value
|
||||||
# * MD5 checksum; start the string with md5:
|
# * MD5 checksum; start the string with md5:
|
||||||
@ -23,16 +24,21 @@ class GamerDVRIE(InfoExtractor):
|
|||||||
}
|
}
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
# video_id = self._match_id(url)
|
video_id = self._match_id(url)
|
||||||
# webpage = self._download_webpage(url, video_id)
|
webpage = self._download_webpage(url, video_id)
|
||||||
|
|
||||||
|
video_url = self._html_search_regex(r"<source src=\"(\S+)\"", webpage, 'URL')
|
||||||
# # TODO more code goes here, for example ...
|
# # TODO more code goes here, for example ...
|
||||||
# title = self._html_search_regex(r'<h1>(.+?)</h1>', webpage, 'title')
|
title = self._html_search_regex(r'<title>(.+?)</title>', webpage, 'title')
|
||||||
|
|
||||||
|
|
||||||
|
description = self._html_search_regex(r"<meta name=\"description\" content=([\"'])((?:\\\1|.)*?)\1", webpage, 'description',group=2)
|
||||||
|
uploader = self._html_search_regex(r"window\.gamertag = '(\S+)'", webpage, 'uploader')
|
||||||
return {
|
return {
|
||||||
'id': 'id goes here',
|
'id': video_id,
|
||||||
'title': 'title goes here',
|
'title': title,
|
||||||
'description': 'desc goes here',
|
'description': description,
|
||||||
'uploader': 'uploader goes here',
|
'uploader': uploader,
|
||||||
|
'url':video_url
|
||||||
# TODO more properties (see youtube_dl/extractor/common.py)
|
# TODO more properties (see youtube_dl/extractor/common.py)
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user