1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
|
import itertools
import re
from .common import InfoExtractor
from ..utils import int_or_none, parse_qs, traverse_obj
class LastFMPlaylistBaseIE(InfoExtractor):
def _entries(self, url, playlist_id):
single_page = traverse_obj(parse_qs(url), ('page', -1, {int_or_none}))
for page in itertools.count(single_page or 1):
webpage = self._download_webpage(
url, playlist_id, f'Downloading page {page}', query={'page': page})
videos = re.findall(r'data-youtube-url="([^"]+)"', webpage)
yield from videos
if single_page or not videos:
return
def _real_extract(self, url):
playlist_id = self._match_id(url)
return self.playlist_from_matches(self._entries(url, playlist_id), playlist_id, ie='Youtube')
class LastFMPlaylistIE(LastFMPlaylistBaseIE):
_VALID_URL = r'https?://(?:www\.)?last\.fm/(music|tag)/(?P<id>[^/]+)(?:/[^/]+)?/?(?:[?#]|$)'
_TESTS = [{
'url': 'https://www.last.fm/music/Oasis/(What%27s+the+Story)+Morning+Glory%3F',
'info_dict': {
'id': 'Oasis',
},
'playlist_mincount': 11,
}, {
'url': 'https://www.last.fm/music/Oasis',
'only_matching': True,
}, {
'url': 'https://www.last.fm/music/Oasis/',
'only_matching': True,
}, {
'url': 'https://www.last.fm/music/Oasis?top_tracks_date_preset=ALL#top-tracks',
'only_matching': True,
}, {
'url': 'https://www.last.fm/music/Oasis/+tracks',
'only_matching': True,
}, {
'url': 'https://www.last.fm/music/Oasis/+tracks?page=2',
'only_matching': True,
}, {
'url': 'https://www.last.fm/music/Oasis/+tracks?date_preset=LAST_90_DAYS#top-tracks',
'only_matching': True,
}, {
'url': 'https://www.last.fm/tag/rock',
'only_matching': True,
}, {
'url': 'https://www.last.fm/tag/rock/tracks',
'only_matching': True,
}]
class LastFMUserIE(LastFMPlaylistBaseIE):
_VALID_URL = r'https?://(?:www\.)?last\.fm/user/[^/]+/playlists/(?P<id>[^/#?]+)'
_TESTS = [{
'url': 'https://www.last.fm/user/mehq/playlists/12319471',
'info_dict': {
'id': '12319471',
},
'playlist_count': 30,
}, {
'url': 'https://www.last.fm/user/naamloos1/playlists/12543760',
'info_dict': {
'id': '12543760',
},
'playlist_mincount': 80,
}, {
'url': 'https://www.last.fm/user/naamloos1/playlists/12543760?page=3',
'info_dict': {
'id': '12543760',
},
'playlist_count': 32,
}]
class LastFMIE(InfoExtractor):
_VALID_URL = r'https?://(?:www\.)?last\.fm/music(?:/[^/]+){2}/(?P<id>[^/#?]+)'
_TESTS = [{
'url': 'https://www.last.fm/music/Oasis/_/Wonderwall',
'md5': '9c4a70c2e84c03d54fe24229b9e13b7b',
'info_dict': {
'id': '6hzrDeceEKc',
'ext': 'mp4',
'title': 'Oasis - Wonderwall (Official Video)',
'thumbnail': r're:^https?://i.ytimg.com/.*\.jpg$',
'description': 'md5:0848669853c10687cc28e88b5756738f',
'uploader': 'Oasis',
'uploader_id': 'oasisinetofficial',
'upload_date': '20080207',
'album': '(What\'s The Story) Morning Glory? (Remastered)',
'track': 'Wonderwall (Remastered)',
'channel_id': 'UCUDVBtnOQi4c7E8jebpjc9Q',
'view_count': int,
'live_status': 'not_live',
'channel_url': 'https://www.youtube.com/channel/UCUDVBtnOQi4c7E8jebpjc9Q',
'tags': 'count:39',
'creator': 'Oasis',
'uploader_url': 're:^https?://www.youtube.com/user/oasisinetofficial',
'duration': 279,
'alt_title': 'Wonderwall (Remastered)',
'age_limit': 0,
'channel': 'Oasis',
'channel_follower_count': int,
'categories': ['Music'],
'availability': 'public',
'like_count': int,
'playable_in_embed': True,
'artist': 'Oasis',
},
'add_ie': ['Youtube'],
}, {
'url': 'https://www.last.fm/music/Oasis/_/Don%27t+Look+Back+In+Anger+-+Remastered/',
'only_matching': True,
}, {
'url': 'https://www.last.fm/music/Guns+N%27+Roses/_/Sweet+Child+o%27+Mine',
'only_matching': True,
}]
def _real_extract(self, url):
video_id = self._match_id(url)
webpage = self._download_webpage(url, video_id)
player_url = self._search_regex(r'(?s)class="header-new-playlink"\s+href="([^"]+)"', webpage, 'player_url')
return self.url_result(player_url, 'Youtube')
|