1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-07-02 22:21:05 +02:00

[FunnyOrDie] simplify

This commit is contained in:
pulpe 2014-05-06 10:19:13 +02:00
parent aab8874c55
commit d0111a7409

View File

@ -43,16 +43,12 @@ def _real_extract(self, url):
post_json = self._search_regex(
r'fb_post\s*=\s*(\{.*?\});', webpage, 'post details')
post = json.loads(post_json)
title = post['name']
description = post.get('description')
thumbnail = post.get('picture')
return {
'id': video_id,
'url': video_url,
'ext': 'mp4',
'title': title,
'description': description,
'thumbnail': thumbnail,
'title': post['name'],
'description': post.get('description'),
'thumbnail': post.get('picture'),
}