1
0
Fork 0
mirror of https://github.com/blackjack4494/yt-dlc.git synced 2024-12-25 17:27:36 +00:00

[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,