diff options
author | Sergey M․ <dstftw@gmail.com> | 2015-03-11 21:56:40 +0600 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2015-03-11 21:56:40 +0600 |
commit | e04793401d909092b88ce74c580e08f525a914da (patch) | |
tree | c52440f0489bcdef8772639226f6a5a90403e41e | |
parent | c792b5011fe56af654d99378c1e77837475d7b69 (diff) | |
parent | a3fbd188241b6151b024f6e3ea21c0edc60fae09 (diff) |
Merge branch 'pishposhmcgee-master'
-rw-r--r-- | youtube_dl/extractor/funnyordie.py | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/youtube_dl/extractor/funnyordie.py b/youtube_dl/extractor/funnyordie.py index a49fc1151..dd87257c4 100644 --- a/youtube_dl/extractor/funnyordie.py +++ b/youtube_dl/extractor/funnyordie.py @@ -50,7 +50,6 @@ class FunnyOrDieIE(InfoExtractor): bitrates.sort() formats = [] - for bitrate in bitrates: for link in links: formats.append({ @@ -59,6 +58,13 @@ class FunnyOrDieIE(InfoExtractor): 'vbr': bitrate, }) + subtitles = {} + for src, src_lang in re.findall(r'<track kind="captions" src="([^"]+)" srclang="([^"]+)"', webpage): + subtitles[src_lang] = [{ + 'ext': src.split('/')[-1], + 'url': 'http://www.funnyordie.com%s' % src, + }] + post_json = self._search_regex( r'fb_post\s*=\s*(\{.*?\});', webpage, 'post details') post = json.loads(post_json) @@ -69,4 +75,5 @@ class FunnyOrDieIE(InfoExtractor): 'description': post.get('description'), 'thumbnail': post.get('picture'), 'formats': formats, + 'subtitles': subtitles, } |