1
0
Fork 0
mirror of https://github.com/ytdl-org/youtube-dl.git synced 2024-05-18 19:19:32 +00:00

Update Vimeo Info Extractor to get pull in the description properly

This commit is contained in:
Nick Daniels 2012-12-19 14:21:39 +00:00 committed by Philipp Hagemeister
parent 43e8fafd49
commit 0dcfb234ed

View file

@ -999,7 +999,7 @@ class VimeoIE(InfoExtractor):
video_thumbnail = config["video"]["thumbnail"]
# Extract video description
video_description = get_element_by_id("description", webpage)
video_description = get_element_by_attribute("itemprop", "description", webpage)
if video_description: video_description = clean_html(video_description)
else: video_description = ''