[fktv] get format_id from video file ext

This commit is contained in:
remitamine 2015-09-26 07:51:11 +01:00
parent 08bea4adde
commit 3706fb5dc8

View file

@ -45,7 +45,7 @@ class FKTVIE(InfoExtractor):
urls = re.findall(r'<source[^>]+src="([^"]+)"', sources)
formats = [{
'url': furl,
'format_id': determine_ext(url),
'format_id': determine_ext(furl),
} for furl in urls]
return {
'id': episode,