1
0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2025-08-21 00:34:43 +00:00

Compare commits

...

2 Commits

Author SHA1 Message Date
ganzabb
297422794b
Merge 8f4fa9e91b08d0387ec2979994df40b91bc72049 into 3eb8d22ddb8982ca4fb56bb7a8d6517538bf14c6 2025-04-01 10:46:19 +02: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):
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={
'key': key,
})