1
0
mirror of https://github.com/yt-dlp/yt-dlp synced 2025-12-21 00:25:42 +07: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 @@ def _real_extract(self, url):
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,