mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 17:22:31 +01:00
[qqmusic] Add more localized names
This commit is contained in:
parent
ed848087d5
commit
181c4ccaaa
@ -143,6 +143,7 @@ def get_entries_from_page(cls, page):
|
|||||||
|
|
||||||
class QQMusicSingerIE(QQPlaylistBaseIE):
|
class QQMusicSingerIE(QQPlaylistBaseIE):
|
||||||
IE_NAME = 'qqmusic:singer'
|
IE_NAME = 'qqmusic:singer'
|
||||||
|
IE_DESC = 'QQ音乐 - 歌手'
|
||||||
_VALID_URL = r'http://y.qq.com/#type=singer&mid=(?P<id>[0-9A-Za-z]+)'
|
_VALID_URL = r'http://y.qq.com/#type=singer&mid=(?P<id>[0-9A-Za-z]+)'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'http://y.qq.com/#type=singer&mid=001BLpXF2DyJe2',
|
'url': 'http://y.qq.com/#type=singer&mid=001BLpXF2DyJe2',
|
||||||
@ -187,6 +188,7 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
class QQMusicAlbumIE(QQPlaylistBaseIE):
|
class QQMusicAlbumIE(QQPlaylistBaseIE):
|
||||||
IE_NAME = 'qqmusic:album'
|
IE_NAME = 'qqmusic:album'
|
||||||
|
IE_DESC = 'QQ音乐 - 专辑'
|
||||||
_VALID_URL = r'http://y.qq.com/#type=album&mid=(?P<id>[0-9A-Za-z]+)'
|
_VALID_URL = r'http://y.qq.com/#type=album&mid=(?P<id>[0-9A-Za-z]+)'
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
@ -229,6 +231,7 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
class QQMusicToplistIE(QQPlaylistBaseIE):
|
class QQMusicToplistIE(QQPlaylistBaseIE):
|
||||||
IE_NAME = 'qqmusic:toplist'
|
IE_NAME = 'qqmusic:toplist'
|
||||||
|
IE_DESC = 'QQ音乐 - 排行榜'
|
||||||
_VALID_URL = r'http://y\.qq\.com/#type=toplist&p=(?P<id>(top|global)_[0-9]+)'
|
_VALID_URL = r'http://y\.qq\.com/#type=toplist&p=(?P<id>(top|global)_[0-9]+)'
|
||||||
|
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
@ -282,6 +285,7 @@ def _real_extract(self, url):
|
|||||||
|
|
||||||
class QQMusicPlaylistIE(QQPlaylistBaseIE):
|
class QQMusicPlaylistIE(QQPlaylistBaseIE):
|
||||||
IE_NAME = 'qqmusic:playlist'
|
IE_NAME = 'qqmusic:playlist'
|
||||||
|
IE_DESC = 'QQ音乐 - 歌单'
|
||||||
_VALID_URL = r'http://y\.qq\.com/#type=taoge&id=(?P<id>[0-9]+)'
|
_VALID_URL = r'http://y\.qq\.com/#type=taoge&id=(?P<id>[0-9]+)'
|
||||||
|
|
||||||
_TEST = {
|
_TEST = {
|
||||||
|
Loading…
Reference in New Issue
Block a user