[myspace] Add more data to info dict

`uploader` is an artist
`playlist` is an album
This commit is contained in:
Tithen-Firion 2014-11-30 19:07:36 +01:00
parent e277123d36
commit 9717d6bf20

View File

@ -60,7 +60,9 @@ class MySpaceIE(InfoExtractor):
info = {
'id': video_id,
'title': self._og_search_title(webpage),
'uploader': search_data('artist-name'),
'uploader_id': search_data('artist-username'),
'playlist': search_data('album-title'),
'thumbnail': self._og_search_thumbnail(webpage),
}
else: