1
0
mirror of https://github.com/yt-dlp/yt-dlp.git synced 2024-06-28 20:21:09 +02:00

[vimeo] Fix description extraction

This commit is contained in:
Jaime Marquínez Ferrándiz 2014-05-04 21:48:08 +02:00
parent 867274e997
commit 7558830fa3

View File

@ -257,8 +257,9 @@ def _real_extract(self, url):
# Extract video description
video_description = None
try:
video_description = get_element_by_attribute("itemprop", "description", webpage)
if video_description: video_description = clean_html(video_description)
video_description = get_element_by_attribute("class", "description_wrapper", webpage)
if video_description:
video_description = clean_html(video_description)
except AssertionError as err:
# On some pages like (http://player.vimeo.com/video/54469442) the
# html tags are not closed, python 2.6 cannot handle it