aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/dailymotion.py
AgeCommit message (Collapse)Author
2015-10-09[dailymotion] Update player v5 regex (Closes #7107)Sergey M․
2015-08-02[dailymotion:playlist] Use an iterator for the entriesJaime Marquínez Ferrándiz
So that using '--playlist-end' only downloads the required pages (reported in #2175).
2015-07-24[dailymotion:playlist] Detect problematic redirection (fixes #6347)Yen Chi Hsuan
2015-07-24[dailymotion:user] Fix _VALID_URL (Closes #6346)Sergey M․
2015-07-23[daylimotion] Adapt to player v5 and modernize (Closes #6151, closes #6250)Sergey M․
2015-07-14[dailymotion] Extract duration (closes #6221)cazulu
2015-07-03[dailymotion:cloud] Extend _VALID_URL (Closes #6145)Sergey M․
2015-06-21[dailymotion/generic] Add DailymotionCloudIEYen Chi Hsuan
2015-05-26[dailymotion:user] Fix _VALID_URLSergey M․
2015-05-26[dailymotion:user] Process user home as user (Closes #5823)Sergey M․
2015-05-10[dailymotion] Patch upload_date detection.ping
(closes #5665)
2015-05-03[dailymotion] Use https urlsJaime Marquínez Ferrándiz
The video url still redirects to an http url, but it doesn't explicitly contain the video id.
2015-04-09[dailymotion:user] Improve _VALID_URL (Closes #5380)Sergey M․
2015-03-31[dailymotion] Fix ff cookie and use it for embed page (Closes #5330)Sergey M․
2015-03-06[dailymotion] Replace testJaime Marquínez Ferrándiz
It has been removed.
2015-02-23Merge branch 'subtitles-rework'Jaime Marquínez Ferrándiz
(Closes PR #4964)
2015-02-18Extend various playlist testsPhilipp Hagemeister
2015-02-16[dailymotion] Convert to new subtitles systemJaime Marquínez Ferrándiz
2014-12-13Fix imports and general cleanupPhilipp Hagemeister
· Import from compat what comes from compat. Yes, some names are available in utils too, but that's an implementation detail. · Use _match_id consistently whenever possible · Fix some outdated tests · Use consistent valid URL (always match the whole protocol, no ^ at start required) · Use modern test definitions
2014-11-23PEP8: applied even more rulesJouke Waleson
2014-11-23PEP8 appliedJouke Waleson
2014-11-12[dailymotion] Fix extraction of vevo videos (fixes #4168)Jaime Marquínez Ferrándiz
2014-10-05[dailymotion] Alternative title search (Fixes #3882)Philipp Hagemeister
2014-08-28Move playlist tests to extractors.Philipp Hagemeister
From now on, test_download will run these tests. That means we benefit not only from the networking setup in there, but also from the other tests (for example test_all_urls to find problems with _VALID_URLs).
2014-08-27[dailymotion] Correct test casePhilipp Hagemeister
2014-06-25[Dailymotion] fix uploader name (fixes #3153)Petr Půlpán
2014-04-23[dailymotion] Fix user playlist extractionSergey M․
2014-04-19Remove unused importsPhilipp Hagemeister
2014-04-11[dailymotion:playlist] Fix titlePhilipp Hagemeister
2014-04-04Remove unused importsPhilipp Hagemeister
2014-04-04[dailymotion] Fix playlist+userPhilipp Hagemeister
2014-03-04[dailymotion] Convert width and height fields from strings to integersJaime Marquínez Ferrándiz
2013-12-14[daylimotion] Add support for urls from the mobile site (fixes #1953)Jaime Marquínez Ferrándiz
It uses the 'touch' subdomain and adds a '#' before 'video'
2013-12-10[dailymotion] Fix view count extraction and make it non fatal (fixes #1940)Jaime Marquínez Ferrándiz
2013-12-10[dailymotion] Fix uploader extractionJaime Marquínez Ferrándiz
Now it looks directly in the info dictionary
2013-12-06[dailymotion] Fix view count regexJaime Marquínez Ferrándiz
In some languages they can be in the format '123,456' instead of '123.456'
2013-12-06[dailymotion] Extract view count (#1895)Jaime Marquínez Ferrándiz
2013-11-16[dailymotion] Fix playlistsPhilipp Hagemeister
2013-11-02Merge branch 'ted_subtitles'Ismaël Mejía
2013-11-02[subtitles] refactor to support websites with subtitle information theIsmaël Mejía
webpage. I added the parameter webpage, so now it's similar to the way automatic captions are handled. This is an improvement needed for websites like TED.
2013-10-31[dailymotion] Fix support for age-restricted videos (Fixes #1688)Philipp Hagemeister
2013-10-23[dailymotion] Extract all the available formats (closes #1028)Jaime Marquínez Ferrándiz
2013-10-04[dailymotion] Fix playlist extractionJaime Marquínez Ferrándiz
The html code has changed, make the video ids extraction more solid.
2013-10-01[dailymotion] Detect vevo videos (fixes #1532)Jaime Marquínez Ferrándiz
All videos from the Vevo user, just embed videos from vevo.com
2013-09-29[dailymotion] Disable the family filter in the playlists (fixes #1524)Jaime Marquínez Ferrándiz
2013-09-21[dailymotion] Add an extractor for users (closes #1476)Jaime Marquínez Ferrándiz
2013-09-21[dailymotion] Raise ExtractorError if the dailymotion response reports an errorJaime Marquínez Ferrándiz
2013-09-11[subtitles] Use self._download_webpage for extracting the subtitlesJaime Marquínez Ferrándiz
It raises ExtractorError for the same exceptions we have to catch.
2013-09-11[subtitles] Simplify the extraction of subtitles in subclasses and remove ↵Jaime Marquínez Ferrándiz
NoAutoSubtitlesInfoExtractor Subclasses just need to call the method extract_subtitles, which will call _extract_subtitles and _request_automatic_caption Now the default implementation of _request_automatic_caption returns {}.
2013-09-11[subtitles] rename SubitlesIE to SubtitlesInfoExtractorJaime Marquínez Ferrándiz
Otherwise it can be automatically detected as a IE ready for use.