mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[beatenpro] Improve display_id
This commit is contained in:
parent
517bcca299
commit
ba1d4c0488
1 changed files with 7 additions and 4 deletions
|
@ -9,7 +9,7 @@
|
||||||
|
|
||||||
|
|
||||||
class BeatportProIE(InfoExtractor):
|
class BeatportProIE(InfoExtractor):
|
||||||
_VALID_URL = r'https?://pro\.beatport\.com/track/.+/(?P<id>[0-9]+)'
|
_VALID_URL = r'https?://pro\.beatport\.com/track/(?P<display_id>[^/]+)/(?P<id>[0-9]+)'
|
||||||
_TESTS = [{
|
_TESTS = [{
|
||||||
'url': 'https://pro.beatport.com/track/synesthesia-original-mix/5379371',
|
'url': 'https://pro.beatport.com/track/synesthesia-original-mix/5379371',
|
||||||
'md5': 'b3c34d8639a2f6a7f734382358478887',
|
'md5': 'b3c34d8639a2f6a7f734382358478887',
|
||||||
|
@ -40,8 +40,11 @@ class BeatportProIE(InfoExtractor):
|
||||||
}]
|
}]
|
||||||
|
|
||||||
def _real_extract(self, url):
|
def _real_extract(self, url):
|
||||||
track_id = self._match_id(url)
|
mobj = re.match(self._VALID_URL, url)
|
||||||
webpage = self._download_webpage(url, track_id)
|
track_id = mobj.group('id')
|
||||||
|
display_id = mobj.group('display_id')
|
||||||
|
|
||||||
|
webpage = self._download_webpage(url, display_id)
|
||||||
|
|
||||||
playables = self._search_regex(
|
playables = self._search_regex(
|
||||||
r'window\.Playables\s*=\s*({.*?});', webpage,
|
r'window\.Playables\s*=\s*({.*?});', webpage,
|
||||||
|
@ -92,7 +95,7 @@ def _real_extract(self, url):
|
||||||
|
|
||||||
return {
|
return {
|
||||||
'id': track['id'],
|
'id': track['id'],
|
||||||
'display-id': track['slug'],
|
'display_id': track.get('slug') or display_id,
|
||||||
'title': title,
|
'title': title,
|
||||||
'formats': formats,
|
'formats': formats,
|
||||||
'thumbnails': images,
|
'thumbnails': images,
|
||||||
|
|
Loading…
Reference in a new issue