diff options
author | Fai <4016742+aicest@users.noreply.github.com> | 2019-07-02 01:10:55 +0800 |
---|---|---|
committer | Sergey M <dstftw@gmail.com> | 2019-07-02 00:10:55 +0700 |
commit | 918398092c5049a6edf940ebe3c2dd46916ee93c (patch) | |
tree | 461784ce75510355e6bece20816bea9301a59a57 /youtube_dl/extractor | |
parent | 4e2491f066f81ee9e941c48a910982ec6ac286b5 (diff) |
[xiami] Update API base URL (#21575)
Diffstat (limited to 'youtube_dl/extractor')
-rw-r--r-- | youtube_dl/extractor/xiami.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/youtube_dl/extractor/xiami.py b/youtube_dl/extractor/xiami.py index 8333fb534..618da8382 100644 --- a/youtube_dl/extractor/xiami.py +++ b/youtube_dl/extractor/xiami.py @@ -7,7 +7,7 @@ from ..utils import int_or_none class XiamiBaseIE(InfoExtractor): - _API_BASE_URL = 'http://www.xiami.com/song/playlist/cat/json/id' + _API_BASE_URL = 'https://emumo.xiami.com/song/playlist/cat/json/id' def _download_webpage_handle(self, *args, **kwargs): webpage = super(XiamiBaseIE, self)._download_webpage_handle(*args, **kwargs) |