mirror of
https://codeberg.org/polarisfm/youtube-dl
synced 2024-11-26 10:24:33 +01:00
[9gag] Account for Youtube Videos
This commit is contained in:
parent
2cf467f133
commit
f3629fe07c
@ -51,6 +51,10 @@ class NineGagIE(InfoExtractor):
|
|||||||
}
|
}
|
||||||
}]
|
}]
|
||||||
|
|
||||||
|
_EXTERNAL_VIDEO_PROVIDERS = {
|
||||||
|
'Youtube': 'https://youtube.com/watch?v=%s'
|
||||||
|
}
|
||||||
|
|
||||||
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)
|
||||||
@ -61,6 +65,18 @@ class NineGagIE(InfoExtractor):
|
|||||||
rawJsonData = rawJsonData.replace('\\"', '"').replace('\\\\/', '/')
|
rawJsonData = rawJsonData.replace('\\"', '"').replace('\\\\/', '/')
|
||||||
data = self._parse_json(rawJsonData, video_id)['data']['post']
|
data = self._parse_json(rawJsonData, video_id)['data']['post']
|
||||||
|
|
||||||
|
if data['type'] == 'Video':
|
||||||
|
vid = data['video']['id']
|
||||||
|
ie_key = data['video']['source'].capitalize()
|
||||||
|
return {
|
||||||
|
'_type': 'url_transparent',
|
||||||
|
'url': self._EXTERNAL_VIDEO_PROVIDERS[ie_key] % vid,
|
||||||
|
'ie_key': ie_key,
|
||||||
|
'id': vid,
|
||||||
|
'duration': data['video'].get('duration'),
|
||||||
|
'start_time': data['video'].get('startTs')
|
||||||
|
}
|
||||||
|
|
||||||
if data['type'] != 'Animated':
|
if data['type'] != 'Animated':
|
||||||
raise ExtractorError(
|
raise ExtractorError(
|
||||||
'The given url does not contain a video',
|
'The given url does not contain a video',
|
||||||
|
Loading…
Reference in New Issue
Block a user