Browse Source

Update Vimeo Info Extractor to get pull in the description properly

master
Nick Daniels 12 years ago
committed by Philipp Hagemeister
parent
commit
0dcfb234ed
1 changed files with 1 additions and 1 deletions
  1. 2
      youtube_dl/InfoExtractors.py

2
youtube_dl/InfoExtractors.py

@ -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 = ''

Loading…
Cancel
Save