|
|
|
@ -5,7 +5,7 @@ from .common import InfoExtractor
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
class MuseScoreIE(InfoExtractor):
|
|
|
|
|
_VALID_URL = r'(?:https?://)(?:www\.)?musescore\.com/(?:user/\d+|[^/]+)(?:/scores)?/(?P<id>[^#&?]+)'
|
|
|
|
|
_VALID_URL = r'https?://(?:www\.)?musescore\.com/(?:user/\d+|[^/]+)(?:/scores)?/(?P<id>[^#&?]+)'
|
|
|
|
|
_TESTS = [{
|
|
|
|
|
'url': 'https://musescore.com/user/73797/scores/142975',
|
|
|
|
|
'info_dict': {
|
|
|
|
@ -13,7 +13,7 @@ class MuseScoreIE(InfoExtractor):
|
|
|
|
|
'ext': 'mp3',
|
|
|
|
|
'title': 'WA Mozart Marche Turque (Turkish March fingered)',
|
|
|
|
|
'description': 'md5:7ede08230e4eaabd67a4a98bb54d07be',
|
|
|
|
|
'thumbnail': r're:(?:https?://)(?:www\.)?musescore\.com/.*\.png[^$]+',
|
|
|
|
|
'thumbnail': r're:https?://(?:www\.)?musescore\.com/.*\.png[^$]+',
|
|
|
|
|
'uploader': 'PapyPiano',
|
|
|
|
|
'creator': 'Wolfgang Amadeus Mozart',
|
|
|
|
|
}
|
|
|
|
@ -24,7 +24,7 @@ class MuseScoreIE(InfoExtractor):
|
|
|
|
|
'ext': 'mp3',
|
|
|
|
|
'title': 'Sweet Child O\' Mine – Guns N\' Roses sweet child',
|
|
|
|
|
'description': 'md5:4dca71191c14abc312a0a4192492eace',
|
|
|
|
|
'thumbnail': r're:(?:https?://)(?:www\.)?musescore\.com/.*\.png[^$]+',
|
|
|
|
|
'thumbnail': r're:https?://(?:www\.)?musescore\.com/.*\.png[^$]+',
|
|
|
|
|
'uploader': 'roxbelviolin',
|
|
|
|
|
'creator': 'Guns N´Roses Arr. Roxbel Violin',
|
|
|
|
|
}
|
|
|
|
@ -35,7 +35,7 @@ class MuseScoreIE(InfoExtractor):
|
|
|
|
|
'ext': 'mp3',
|
|
|
|
|
'title': 'Für Elise – Beethoven',
|
|
|
|
|
'description': 'md5:49515a3556d5ecaf9fa4b2514064ac34',
|
|
|
|
|
'thumbnail': r're:(?:https?://)(?:www\.)?musescore\.com/.*\.png[^$]+',
|
|
|
|
|
'thumbnail': r're:https?://(?:www\.)?musescore\.com/.*\.png[^$]+',
|
|
|
|
|
'uploader': 'ClassicMan',
|
|
|
|
|
'creator': 'Ludwig van Beethoven (1770–1827)',
|
|
|
|
|
}
|
|
|
|
|