mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-02 09:12:40 +01:00
[youtube] fix: Youtube Music playlists
This commit is contained in:
parent
7166f47b18
commit
659ddd7f70
@ -2965,9 +2965,12 @@ def _real_extract(self, url):
|
||||
if video:
|
||||
return video
|
||||
|
||||
youtube_music_playlist_prefix = 'RDCLAK5uy_'
|
||||
if playlist_id.startswith(('RD', 'UL', 'PU')):
|
||||
# Mixes require a custom extraction process
|
||||
return self._extract_mix(playlist_id)
|
||||
if not playlist_id.startswith(youtube_music_playlist_prefix):
|
||||
# Mixes require a custom extraction process,
|
||||
# Youtube Music playlists act like normal playlists (with randomized order)
|
||||
return self._extract_mix(playlist_id)
|
||||
|
||||
has_videos, playlist = self._extract_playlist(playlist_id)
|
||||
if has_videos or not video_id:
|
||||
|
Loading…
Reference in New Issue
Block a user