[funnyordie] Simplify subtitles
This commit is contained in:
parent
c6052b8c14
commit
a3fbd18824
|
@ -59,13 +59,11 @@ class FunnyOrDieIE(InfoExtractor):
|
||||||
})
|
})
|
||||||
|
|
||||||
subtitles = {}
|
subtitles = {}
|
||||||
subtitle_matches=re.findall(r'<track kind="captions" src="([^"]+)" srclang="([^"]+)"', webpage)
|
for src, src_lang in re.findall(r'<track kind="captions" src="([^"]+)" srclang="([^"]+)"', webpage):
|
||||||
for match in subtitle_matches:
|
subtitles[src_lang] = [{
|
||||||
(suburl,sublang)=match
|
'ext': src.split('/')[-1],
|
||||||
if not sublang in subtitles.keys():
|
'url': 'http://www.funnyordie.com%s' % src,
|
||||||
subtitles[sublang]=[]
|
}]
|
||||||
subext=suburl.split('/')[-1]
|
|
||||||
subtitles[sublang].append({'url': 'http://www.funnyordie.com'+suburl,'ext': subext})
|
|
||||||
|
|
||||||
post_json = self._search_regex(
|
post_json = self._search_regex(
|
||||||
r'fb_post\s*=\s*(\{.*?\});', webpage, 'post details')
|
r'fb_post\s*=\s*(\{.*?\});', webpage, 'post details')
|
||||||
|
|
Loading…
Reference in New Issue