1
0
mirror of https://gitlab.com/ytdl-org/youtube-dl.git synced 2025-11-06 14:57:06 -05:00

8tracks: Include performer as uploader

This commit is contained in:
Philipp Hagemeister
2013-01-27 03:27:46 +01:00
parent c67598c3e1
commit d0d51a8afa
2 changed files with 3 additions and 1 deletions

View File

@@ -3893,6 +3893,7 @@ class EightTracksIE(InfoExtractor):
'id': track_data['id'],
'url': track_data['track_file_stream_url'],
'title': track_data['name'],
'uploader': track_data['performer'],
'ext': 'm4a',
}
res.append(info)