mirror of
https://github.com/ytdl-org/youtube-dl.git
synced 2024-11-16 14:27:53 +00:00
[nate] add new site
This commit is contained in:
parent
a0bb1d8c0d
commit
8cf64dcbbf
@ -26,10 +26,7 @@ class NateIE(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)
|
|
||||||
|
|
||||||
#video_data = self._download_json(
|
|
||||||
# 'https://tv.nate.com/api/v1/clip/% s'%video_id, video_id, headers=self.geo_verification_headers())
|
|
||||||
video_data = self._download_json('https://tv.nate.com/api/v1/clip/' + str(video_id), video_id)
|
video_data = self._download_json('https://tv.nate.com/api/v1/clip/' + str(video_id), video_id)
|
||||||
|
|
||||||
title = video_data.get('clipTitle')
|
title = video_data.get('clipTitle')
|
||||||
@ -38,7 +35,6 @@ class NateIE(InfoExtractor):
|
|||||||
age_limit = video_data.get('targetAge')
|
age_limit = video_data.get('targetAge')
|
||||||
url = video_data['smcUriList'][4]
|
url = video_data['smcUriList'][4]
|
||||||
|
|
||||||
# TODO more code goes here, for example ...
|
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': video_id,
|
'id': video_id,
|
||||||
@ -47,5 +43,4 @@ class NateIE(InfoExtractor):
|
|||||||
'upload_date' : upload_date[:8],
|
'upload_date' : upload_date[:8],
|
||||||
'age_limit' : age_limit,
|
'age_limit' : age_limit,
|
||||||
'url': url
|
'url': url
|
||||||
# TODO more properties (see youtube_dl/extractor/common.py)
|
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user