diff options
author | Sergey M. <dstftw@gmail.com> | 2015-03-14 15:20:48 +0600 |
---|---|---|
committer | Sergey M. <dstftw@gmail.com> | 2015-03-14 15:20:48 +0600 |
commit | f247a199fea35595380e1e55cd455c699af23b03 (patch) | |
tree | 1a6afed6ad096c56682975ba770738dc8cd0cc7d | |
parent | 7be5a62ed71d574132b648864ce3b741635604f9 (diff) | |
parent | 29171bc2d2f07a4eebb3b353fab989d7652a2083 (diff) |
Merge pull request #5199 from MamayAlexander/yandexmusic
[yandexmusic] Site mirrors
-rw-r--r-- | youtube_dl/extractor/yandexmusic.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/yandexmusic.py b/youtube_dl/extractor/yandexmusic.py index b47aecb15..f4c0f5702 100644 --- a/youtube_dl/extractor/yandexmusic.py +++ b/youtube_dl/extractor/yandexmusic.py @@ -39,7 +39,7 @@ class YandexMusicBaseIE(InfoExtractor): class YandexMusicTrackIE(YandexMusicBaseIE): IE_NAME = 'yandexmusic:track' IE_DESC = 'Яндекс.Музыка - Трек' - _VALID_URL = r'https?://music\.yandex\.ru/album/(?P<album_id>\d+)/track/(?P<id>\d+)' + _VALID_URL = r'https?://music\.yandex\.(?:ru|kz|ua|by)/album/(?P<album_id>\d+)/track/(?P<id>\d+)' _TEST = { 'url': 'http://music.yandex.ru/album/540508/track/4878838', @@ -67,7 +67,7 @@ class YandexMusicTrackIE(YandexMusicBaseIE): class YandexMusicAlbumIE(YandexMusicBaseIE): IE_NAME = 'yandexmusic:album' IE_DESC = 'Яндекс.Музыка - Альбом' - _VALID_URL = r'https?://music\.yandex\.ru/album/(?P<id>\d+)/?(\?|$)' + _VALID_URL = r'https?://music\.yandex\.(?:ru|kz|ua|by)/album/(?P<id>\d+)/?(\?|$)' _TEST = { 'url': 'http://music.yandex.ru/album/540508', @@ -98,7 +98,7 @@ class YandexMusicAlbumIE(YandexMusicBaseIE): class YandexMusicPlaylistIE(YandexMusicBaseIE): IE_NAME = 'yandexmusic:playlist' IE_DESC = 'Яндекс.Музыка - Плейлист' - _VALID_URL = r'https?://music\.yandex\.ru/users/[^/]+/playlists/(?P<id>\d+)' + _VALID_URL = r'https?://music\.yandex\.(?:ru|kz|ua|by)/users/[^/]+/playlists/(?P<id>\d+)' _TEST = { 'url': 'http://music.yandex.ru/users/music.partners/playlists/1245', |