mirror of
https://github.com/yt-dlp/yt-dlp.git
synced 2024-11-18 15:11:45 +00:00
[fktv] Correct spellings
This commit is contained in:
parent
dade7245af
commit
2e40a12225
@ -28,9 +28,9 @@ class FKTVIE(InfoExtractor):
|
|||||||
|
|
||||||
webpage = self._download_webpage('http://fernsehkritik.tv/folge-%s/play' % episode, episode)
|
webpage = self._download_webpage('http://fernsehkritik.tv/folge-%s/play' % episode, episode)
|
||||||
title = clean_html(self._html_search_regex('<h3>([^<]+?)</h3>', webpage, 'title'))
|
title = clean_html(self._html_search_regex('<h3>([^<]+?)</h3>', webpage, 'title'))
|
||||||
matchs = re.search(r'(?s)<video[^>]*poster="([^"]+)"[^>]*>(.*?)</video>', webpage)
|
matches = re.search(r'(?s)<video[^>]*poster="([^"]+)"[^>]*>(.*?)</video>', webpage)
|
||||||
if matchs:
|
if matches:
|
||||||
poster, sources = matchs.groups()
|
poster, sources = matches.groups()
|
||||||
urls = re.findall(r'(?s)<source[^>]*src="([^"]+)"[^>]*>', sources)
|
urls = re.findall(r'(?s)<source[^>]*src="([^"]+)"[^>]*>', sources)
|
||||||
if sources:
|
if sources:
|
||||||
formats = [{'url': url, 'format_id': determine_ext(url)} for url in urls]
|
formats = [{'url': url, 'format_id': determine_ext(url)} for url in urls]
|
||||||
|
Loading…
Reference in New Issue
Block a user