mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-07 20:30:41 -05:00
8tracks: Include performer as uploader
This commit is contained in:
parent
c67598c3e1
commit
d0d51a8afa
2 changed files with 3 additions and 1 deletions
|
@ -244,7 +244,8 @@
|
||||||
"file": "11885610.m4a",
|
"file": "11885610.m4a",
|
||||||
"md5": "96ce57f24389fc8734ce47f4c1abcc55",
|
"md5": "96ce57f24389fc8734ce47f4c1abcc55",
|
||||||
"info_dict": {
|
"info_dict": {
|
||||||
"title": "youtube-dl test track 1 \"'/\\\u00e4\u21ad"
|
"title": "youtube-dl test track 1 \"'/\\\u00e4\u21ad",
|
||||||
|
"uploader": "youtue-dl project<>\"'"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
|
|
|
@ -3893,6 +3893,7 @@ def _real_extract(self, url):
|
||||||
'id': track_data['id'],
|
'id': track_data['id'],
|
||||||
'url': track_data['track_file_stream_url'],
|
'url': track_data['track_file_stream_url'],
|
||||||
'title': track_data['name'],
|
'title': track_data['name'],
|
||||||
|
'uploader': track_data['performer'],
|
||||||
'ext': 'm4a',
|
'ext': 'm4a',
|
||||||
}
|
}
|
||||||
res.append(info)
|
res.append(info)
|
||||||
|
|
Loading…
Reference in a new issue