diff options
author | Sergey M․ <dstftw@gmail.com> | 2016-06-23 02:00:03 +0700 |
---|---|---|
committer | Sergey M․ <dstftw@gmail.com> | 2016-06-23 02:00:03 +0700 |
commit | 089657ed1f6edcdb10a958a8cd7d91b4888e41eb (patch) | |
tree | 03e4fb3bfcc3070a0e434cdba1906d89f793dbe3 /youtube_dl/extractor/vimeo.py | |
parent | b5eab86c2424ec04d17fac5de9d15574320ea8f1 (diff) |
[vimeo:album] Add paged example URL
Diffstat (limited to 'youtube_dl/extractor/vimeo.py')
-rw-r--r-- | youtube_dl/extractor/vimeo.py | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/youtube_dl/extractor/vimeo.py b/youtube_dl/extractor/vimeo.py index 8ba3f55f4..4bdeb1187 100644 --- a/youtube_dl/extractor/vimeo.py +++ b/youtube_dl/extractor/vimeo.py @@ -729,6 +729,10 @@ class VimeoAlbumIE(VimeoChannelIE): }, { 'url': 'https://vimeo.com/album/2632481/sort:plays/format:thumbnail', 'only_matching': True, + }, { + # TODO: respect page number + 'url': 'https://vimeo.com/album/2632481/page:2/sort:plays/format:thumbnail', + 'only_matching': True, }] def _page_url(self, base_url, pagenum): |