aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/vimeo.py
AgeCommit message (Collapse)Author
2015-08-11[vimeo:user] Do not match watchlaterSergey M․
2015-08-10[vimeo:watchlater] Fix extraction (Closes #3886)Sergey M․
2015-08-10[vimeo] Fix login (Closes #6488)Sergey M․
2015-08-09[vimeo] Fix password protected videos (Closes #6507)Sergey M․
2015-07-14[extractor/common] Improve _form_hidden_inputs and rename to _hidden_inputsSergey M․
2015-07-10[vimeo] Use `_form_hidden_inputs`Sergey M․
2015-06-21[vimeo/generic] Move detection logic from GenericIE to VimeoIEYen Chi Hsuan
2015-04-28[vimeo] Fix password protected videos again (#5082)Jaime Marquínez Ferrándiz
Since they have changed again to the previous format, I've modified the regex to match both formats.
2015-04-28[vimeo] Fix redirectionpulpe
2015-04-22[vimeo] one token overlookedpulpe
2015-04-22[vimeo] Fix login token (fixes #5082)pulpe
2015-03-27[vimeo] Capture and output error message (#5294)Sergey M․
2015-03-12[vimeo] Use https for all vimeo.com urlsJaime Marquínez Ferrándiz
Unfortunately vimeopro.com doesn't support it yet.
2015-03-12[vimeo] Fix login (#3886)Jaime Marquínez Ferrándiz
2015-03-06[vimeo] Use https for player.vimeo.com urls (closes #5147)Jaime Marquínez Ferrándiz
2015-03-06[vimeo:album] Fix password protected videosJaime Marquínez Ferrándiz
Since it only uses https now, don't recognize http urls.
2015-03-06[vimeo] Fix and use '_verify_video_password' (#5001)Jaime Marquínez Ferrándiz
It only supports verifying the password over https now. Use it instead of manually setting the 'password' cookie because it allows to check if the password is correct.
2015-03-06[vimeo] Fix upload date extractionJaime Marquínez Ferrándiz
2015-02-23Merge branch 'subtitles-rework'Jaime Marquínez Ferrándiz
(Closes PR #4964)
2015-02-21[vimeo] Encode password before hash calculationSergey M․
2015-02-21[vimeo] Fix password protected videos (Closes #5001)Sergey M․
2015-02-18[vimeo] Raise the ExtractorError with expected=True when no video password ↵Jaime Marquínez Ferrándiz
is given
2015-02-18[vimeo] Amend playlist testsPhilipp Hagemeister
2015-02-18[vimeo] Prevent infinite loops if video password verification failsPhilipp Hagemeister
We're seeing this in the tests¹ right now, which do not terminate. ¹ https://travis-ci.org/jaimeMF/youtube-dl/jobs/51135858
2015-02-16[vimeo] Convert to new subtitles systemJaime Marquínez Ferrándiz
Removed some tests, the behaviour should be checked in a test for the YoutubeDL class
2015-02-10[vimeo:album] Add support for album passwords (Fixes #4917)Philipp Hagemeister
2015-02-01[vimeo] Modernize test definitionPhilipp Hagemeister
2014-11-23PEP8: applied even more rulesJouke Waleson
2014-11-02[util] Move compatibility functions out of utilPhilipp Hagemeister
utils is large enough without these compatibility functions. Everything that is present in newer versions of Python (i.e. with dev Python it's just an import) goes into compat.py . Everything else (i.e. youtube-dl-specific helpers) goes into utils.py .
2014-10-27[vimeo:review] Fix test titlePhilipp Hagemeister
2014-10-26Remove unused importsPhilipp Hagemeister
2014-10-17[vimeo] Improve regex for the config js dict (fixes #3955, fixes #3974)Jaime Marquínez Ferrándiz
The javascript code contains assignments of empty dicts with the same variable name
2014-10-11[vimeo] Make the protocol mandatory in the url (fixes #3926)Jaime Marquínez Ferrándiz
If it's missing, it will be correctly handled by the generic IE.
2014-09-29[vimeo] Fix description extractionPhilipp Hagemeister
2014-09-29[vimeo] Use regexps to find descriptionPhilipp Hagemeister
This fixes descriptions on 2.6 and makes the code simpler.
2014-09-29[vimeo:likes] Support large like lists (Fixes #3847)Philipp Hagemeister
2014-09-28[vimeo:likes] Add new extractor (Fixes #3835)Philipp Hagemeister
2014-08-27[vimeo] Move all testcases to extractors and clean upPhilipp Hagemeister
Previously, these extractors all defined their own suitable methods. No test_all_urls tests that everything is in order, automatically :)
2014-08-27[vimeo] Move test case to where it belongsPhilipp Hagemeister
2014-08-25[vimeo] Always pass in referer (Fixes #3582)Philipp Hagemeister
2014-08-04[vimeo] Ignore video 'base' thumbnail (Closes #3438)Dobrosław Żybort
2014-08-04[vimeo] Use original URL when for standard vimeo.com links (Closes #3428)Sergey M․
Some videos that are freely accessible without password via the original URL (e.g. http://vimeo.com/channels/keypeele/75629013) ask for password when accessed via http://vimeo.com/<video_id>.
2014-07-21[vimeo] Update test descriptionPhilipp Hagemeister
2014-05-10[vimeo] Add video duration extraction(Closes #2876)Sergey M․
2014-05-04[vimeo] Some modernization and style fixesJaime Marquínez Ferrándiz
2014-05-04[vimeo] Fix description extractionJaime Marquínez Ferrándiz
2014-04-24[vimeo] Add an extractor for the watch later list (closes #2787)Jaime Marquínez Ferrándiz
2014-04-24[vimeo] Fix logging in python 3.xJaime Marquínez Ferrándiz
The POST data must be a bytes object.
2014-03-12[vimeo] Now VimeoIE doesn't match urls of channels with a numeric id (fixes ↵Jaime Marquínez Ferrándiz
#2552)
2014-03-08[vimeo] Add a better error message for embed-only videos (#2527)Philipp Hagemeister