mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-10 09:07:58 +01:00
[fktv] get format_id from video file ext
This commit is contained in:
parent
08bea4adde
commit
3706fb5dc8
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue