[bambuser] Fix 'uploader_id' extraction (fixes #4944)

This commit is contained in:
Jaime Marquínez Ferrándiz 2015-02-13 11:36:33 +01:00
parent c80b9cd280
commit ae6423d704
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ class BambuserIE(InfoExtractor):
'duration': int(info['length']),
'view_count': int(info['views_total']),
'uploader': info['username'],
'uploader_id': info['uid'],
'uploader_id': info['owner']['uid'],
}