Update Vimeo Info Extractor to get pull in the description properly
authorNick Daniels <nick.daniels@forward.co.uk>
Wed, 19 Dec 2012 14:21:39 +0000 (14:21 +0000)
committerPhilipp Hagemeister <phihag@phihag.de>
Thu, 20 Dec 2012 12:27:44 +0000 (13:27 +0100)
youtube_dl/InfoExtractors.py

index 9a41dde57bcc2eba44f16a43f1058cffdd1fb204..cf5b51bd8c3175516ec0fa6da56a30edbed334a0 100755 (executable)
@@ -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 = ''