|
|
@ -43,16 +43,12 @@ class FunnyOrDieIE(InfoExtractor):
|
|
|
|
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')
|
|
|
|
post = json.loads(post_json)
|
|
|
|
post = json.loads(post_json)
|
|
|
|
title = post['name']
|
|
|
|
|
|
|
|
description = post.get('description')
|
|
|
|
|
|
|
|
thumbnail = post.get('picture')
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return {
|
|
|
|
return {
|
|
|
|
'id': video_id,
|
|
|
|
'id': video_id,
|
|
|
|
'url': video_url,
|
|
|
|
'url': video_url,
|
|
|
|
'ext': 'mp4',
|
|
|
|
'ext': 'mp4',
|
|
|
|
'title': title,
|
|
|
|
'title': post['name'],
|
|
|
|
'description': description,
|
|
|
|
'description': post.get('description'),
|
|
|
|
'thumbnail': thumbnail,
|
|
|
|
'thumbnail': post.get('picture'),
|
|
|
|
}
|
|
|
|
}
|
|
|
|