Set the ext field for each format

This commit is contained in:
Jaime Marquínez Ferrándiz 2013-09-14 14:45:04 +02:00
parent 19e1d35989
commit 471a5ee908
3 changed files with 9 additions and 8 deletions

View file

@ -52,6 +52,7 @@ class TriluliluIE(InfoExtractor):
{
'format': fnode.text,
'url': video_url_template % fnode.text,
'ext': fnode.text.partition('-')[0]
}
for fnode in format_doc.findall('./formats/format')
@ -67,7 +68,6 @@ class TriluliluIE(InfoExtractor):
}
# TODO: Remove when #980 has been merged
info['url'] = formats[-1]['url']
info['ext'] = formats[-1]['format'].partition('-')[0]
info.update(formats[-1])
return info