mirror of
https://github.com/ytdl-org/youtube-dl
synced 2025-01-08 12:30:10 +09:00
remove utf8 song name in test for bandlab playlist extractor
This commit is contained in:
parent
e24c976035
commit
0201ee1082
@ -1,7 +1,3 @@
|
|||||||
# -*- coding: utf-8 -*-
|
|
||||||
|
|
||||||
from __future__ import unicode_literals
|
|
||||||
|
|
||||||
import re
|
import re
|
||||||
|
|
||||||
from .common import InfoExtractor
|
from .common import InfoExtractor
|
||||||
@ -145,19 +141,19 @@ class BandlabAlbumIE(InfoExtractor):
|
|||||||
class BandlabPlaylistIE(InfoExtractor):
|
class BandlabPlaylistIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://(?:www\.)?bandlab\.com/[^/]+/collections/(?P<id>[^/]+)'
|
_VALID_URL = r'https?://(?:www\.)?bandlab\.com/[^/]+/collections/(?P<id>[^/]+)'
|
||||||
_TEST = {
|
_TEST = {
|
||||||
'url': 'https://www.bandlab.com/hexatetrahedronx/collections/606442da-f426-ed11-9441-000d3a3f83b4',
|
'url': 'https://www.bandlab.com/hexatetrahedronx/collections/8fb1041c-e865-eb11-9889-0050f28a2802',
|
||||||
'playlist': [
|
'playlist': [
|
||||||
{
|
{
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '3086d9cd-983a-4d2c-b088-adc3eb8d618d',
|
'id': '8f37e4aa-92c4-eb11-a7ad-0050f280467f',
|
||||||
'title': u'If You Leave (En-Esp) Si Te Vas #forkable #fork 🎤🎹📀',
|
'title': 'psych ward',
|
||||||
'ext': 'm4a'
|
'ext': 'm4a'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
'info_dict': {
|
'info_dict': {
|
||||||
'id': '606442da-f426-ed11-9441-000d3a3f83b4',
|
'id': '8fb1041c-e865-eb11-9889-0050f28a2802',
|
||||||
'playlist': 'youtube-mp3-test'
|
'playlist': 'DOOMTAPE'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user