'uploader' information is null in YouTube playlist extractor
See original GitHub issueChecklist
- I’ve verified that I’m running youtube-dlc version 2020.11.11
- I’ve checked that all provided URLs are alive and playable in a browser
- I’ve checked that all URLs and arguments with special characters are properly quoted or escaped
- I’ve searched the bugtracker for similar bug reports including closed ones
- I’ve read bugs section in FAQ
Verbose log
Description
Hi, the uploader information is all null in the YouTube playlist extractor. More specifically, the ‘uploader’, ‘uploader_url’, and ‘uploader_id’. Here’s the response: https://ibb.co/hMz7HWG
This is the command that I’m using: youtube-dlc -v -4 -q --no-warnings -J --flat-playlist https://www.youtube.com/playlist?list=UU_aEa8K-EOJ3D6gOs7HcyNg
It used to include the uploader information before, but now it doesn’t.
Issue Analytics
- State:
- Created 3 years ago
- Reactions:1
- Comments:9 (3 by maintainers)
Top Results From Across the Web
How can I make youtube-dl return the creator of a playlist?
Is there a way to get the creator of a playlist in a similar way? ... returns a list of videos but no...
Read more >How to Extract The upload dates, Titles, URLs and Durations ...
You need to filter output with a convenient tool, like jq : Paste this command line: youtube-dl --skip-download --print-json ...
Read more >Videos not appearing in embedded playlist - YouTube Help
Some of the videos in your playlist may have had their embed option disabled by the uploader, or the video could have been...
Read more >PlaylistItems: list | YouTube Data API - Google Developers
This code sample calls the API's playlistItems.list method to retrieve a list of videos uploaded to the channel associated with the request. The ......
Read more >Create A Python Program To Merge YouTube Playlists (With ...
In this tutorial, we are going to create a Python program to copy a YouTube playlist to another playlist - I thought this...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Can confirm I am having an issue with this too. It seems like the regex for extracting the playlist title, uploader, etc is no longer valid. It probably needs to be updated to use the json data. Code at fault: https://github.com/blackjack4494/yt-dlc/blob/d052b9a112fb7ae749a829dceba6e3289663a303/youtube_dlc/extractor/youtube.py#L2971-L2986
Same Problem here when building from source (master-branch, d052b9a) %(playlist_title)s gets evaluated as NA in the output template.
I’d also suggest looking at #150 using their solution to fix this problem.