mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-20 05:47:24 +01:00
[ie/suno] add fallbacks for basic page metadata
This commit is contained in:
parent
10a1a93352
commit
2be0c24897
@ -4,7 +4,23 @@
|
||||
from ..utils import ExtractorError, unescapeHTML
|
||||
|
||||
|
||||
class SunoIE(InfoExtractor):
|
||||
class SunoBaseIE(InfoExtractor):
|
||||
def _get_title(self, webpage):
|
||||
return self._html_search_meta(
|
||||
['og:title', 'twitter:title'], webpage, 'title',
|
||||
default=None) or self._html_extract_title(webpage)
|
||||
|
||||
def _get_description(self, webpage):
|
||||
return self._html_search_meta(
|
||||
['og:description', 'description', 'twitter:description'],
|
||||
webpage, 'description', default=None)
|
||||
|
||||
def _get_thumbnail(self, webpage):
|
||||
return self._html_search_meta(
|
||||
['og:image', 'twitter:image'], webpage, 'thumbnail', default=None)
|
||||
|
||||
|
||||
class SunoIE(SunoBaseIE):
|
||||
_VALID_URL = r'https?://(?:www\.)?suno\.com/song/(?P<id>[-a-f0-9]+)'
|
||||
_TESTS = [
|
||||
{
|
||||
@ -35,16 +51,19 @@ def _real_extract(self, url):
|
||||
video_id = self._match_id(url)
|
||||
webpage = self._download_webpage(url, video_id)
|
||||
|
||||
url = self._html_search_meta(
|
||||
['og:audio', 'twitter:player:stream'], webpage, 'url', default=None)
|
||||
|
||||
return {
|
||||
'id': video_id,
|
||||
'title': self._og_search_title(webpage),
|
||||
'description': self._og_search_description(webpage),
|
||||
'thumbnail': self._og_search_thumbnail(webpage),
|
||||
'url': self._og_search_property('audio', webpage),
|
||||
'title': self._get_title(webpage),
|
||||
'description': self._get_description(webpage),
|
||||
'thumbnail': self._get_thumbnail(webpage),
|
||||
'url': url,
|
||||
}
|
||||
|
||||
|
||||
class SunoPlaylistIE(InfoExtractor):
|
||||
class SunoPlaylistIE(SunoBaseIE):
|
||||
_VALID_URL = r'https?://(?:www\.)?suno\.com/playlist/(?P<id>[-a-f0-9]+)'
|
||||
_TESTS = [
|
||||
{
|
||||
@ -120,9 +139,9 @@ def _real_extract(self, url):
|
||||
return {
|
||||
'_type': 'playlist',
|
||||
'id': playlist_id,
|
||||
'title': self._og_search_title(webpage),
|
||||
'description': self._og_search_description(webpage),
|
||||
'thumbnail': self._og_search_thumbnail(webpage),
|
||||
'title': self._get_title(webpage),
|
||||
'description': self._get_description(webpage),
|
||||
'thumbnail': self._get_thumbnail(webpage),
|
||||
|
||||
'entries': [{
|
||||
'id': song_tuple[0],
|
||||
|
Loading…
Reference in New Issue
Block a user