[dctp] follow id conventions

This commit is contained in:
Paul Hartmann 2015-01-29 23:34:56 +01:00
parent f345fe9db7
commit 87673cd438

View file

@ -37,12 +37,13 @@ class DctpTvIE(InfoExtractor):
url = servers_json[0]['endpoint']
return {
'id': video_id,
'id': object_id,
'title': title,
'format': 'rtmp',
'url': url,
'play_path': play_path,
'real_time': True,
'ext': 'flv'
'ext': 'flv',
'display_id': video_id
}