From 1d91a11ceab2a0b7a249f71237d7f62b93852cb6 Mon Sep 17 00:00:00 2001 From: Iuri Campos Date: Wed, 18 Jun 2025 15:49:37 +0100 Subject: [PATCH] Update yt_dlp/extractor/udio.py Co-authored-by: D Trombett --- yt_dlp/extractor/udio.py | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/yt_dlp/extractor/udio.py b/yt_dlp/extractor/udio.py index c798157b6..e23cfabae 100644 --- a/yt_dlp/extractor/udio.py +++ b/yt_dlp/extractor/udio.py @@ -81,23 +81,13 @@ def _real_extract(self, url): default=None, ) - # If found, add lyrics to the entry - entry = { - 'id': artist_id, - 'title': title.strip(), - 'url': audio_src, - } - if lyrics: - entry['lyrics'] = lyrics - return { - '_type': 'playlist', 'id': artist_id, 'title': title.strip(), - 'description': description, + 'description': lyrics, 'uploader': artist_name.strip(), 'uploader_url': f'https://udio.com/artist/{artist_name.strip()}', - 'entries': [entry], # Put the entry in an entries list + 'url': audio_src, }