youtube-dl

Another place where youtube-dl lives on
git clone git://git.oshgnacknak.de/youtube-dl.git
Log | Files | Refs | README | LICENSE

commit 0dcfb234ed209e90fde20cf299483457caf49b36
parent 43e8fafd49f94ebf4776c84697e4b815750ec701
Author: Nick Daniels <nick.daniels@forward.co.uk>
Date:   Wed, 19 Dec 2012 14:21:39 +0000

Update Vimeo Info Extractor to get pull in the description properly

Diffstat:
Myoutube_dl/InfoExtractors.py | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/youtube_dl/InfoExtractors.py b/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 = ''