summary refs log tree commit diff
diff options
context:
space:
mode:
authorha shao <mozbugbox@yahoo.com.au>2017-01-21 15:47:39 +0800
committerSergey M․ <dstftw@gmail.com>2017-01-21 23:37:44 +0700
commit04a3d4d23472ffa4a482d8ebf2d8fdbb3e974327 (patch)
treef9b56d1a27784e2ace79cba220fe9244e78dd149
parent12afdc2ad617dedfd7d60654b8c57b99604332ed (diff)
downloadyoutube-dl-04a3d4d23472ffa4a482d8ebf2d8fdbb3e974327.tar.gz
youtube-dl-04a3d4d23472ffa4a482d8ebf2d8fdbb3e974327.tar.xz
youtube-dl-04a3d4d23472ffa4a482d8ebf2d8fdbb3e974327.zip
[vimeo:channel] Extract videos' titles for playlist entries
-rw-r--r--youtube_dl/extractor/vimeo.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py
index add753635..a6bbd4c05 100644
--- a/youtube_dl/extractor/vimeo.py
+++ b/youtube_dl/extractor/vimeo.py
@@ -730,12 +730,12 @@ class VimeoChannelIE(VimeoBaseInfoExtractor):
             # Try extracting href first since not all videos are available via
             # short https://vimeo.com/id URL (e.g. https://vimeo.com/channels/tributes/6213729)
             clips = re.findall(
-                r'id="clip_(\d+)"[^>]*>\s*<a[^>]+href="(/(?:[^/]+/)*\1)', webpage)
+                r'id="clip_(\d+)"[^>]*>\s*<a[^>]+href="(/(?:[^/]+/)*\1)(?:[^>]+\btitle="([^"]+)")?', webpage)
             if clips:
-                for video_id, video_url in clips:
+                for video_id, video_url, video_title in clips:
                     yield self.url_result(
                         compat_urlparse.urljoin(base_url, video_url),
-                        VimeoIE.ie_key(), video_id=video_id)
+                        VimeoIE.ie_key(), video_id=video_id, video_title=video_title)
             # More relaxed fallback
             else:
                 for video_id in re.findall(r'id=["\']clip_(\d+)', webpage):