Browse Source

[fktv] get format_id from video file ext

totalwebcasting
remitamine 9 years ago
parent
commit
3706fb5dc8
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      youtube_dl/extractor/fktv.py

+ 1
- 1
youtube_dl/extractor/fktv.py 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,


Loading…
Cancel
Save