Compare commits

...

2 Commits

Author SHA1 Message Date
ganzabb
059f818858
Merge 8f4fa9e91b into e1b3fa242c 2024-07-28 01:19:53 +09:00
ganzabb
8f4fa9e91b Changed naver api address
Naver's vod play api endpoint address has been changed, and old address does not work anymore (at least for me!).
2021-02-21 06:14:50 +09:00

View File

@ -20,7 +20,7 @@ class NaverBaseIE(InfoExtractor):
def _extract_video_info(self, video_id, vid, key): def _extract_video_info(self, video_id, vid, key):
video_data = self._download_json( video_data = self._download_json(
'http://play.rmcnmv.naver.com/vod/play/v2.0/' + vid, 'https://apis.naver.com/rmcnmv/rmcnmv/vod/play/v2.0/' + vid,
video_id, query={ video_id, query={
'key': key, 'key': key,
}) })