aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/dailymotion.py
AgeCommit message (Collapse)Author
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.
2013-09-11[subtitles] made inheritance hierarchy flat as requestedIsmael Mejia
2013-09-06Merge branch 'master' into subtitles_reworkIsmael Mejia
2013-09-06[daylimotion] accept embed urls (fixes #1386)Jaime Marquínez Ferrándiz
2013-09-03[dailymotion] improve the regex for extracting the video infoJaime Marquínez Ferrándiz
2013-08-28Merge branch 'master' into subtitles_reworkIsmael Mejia
2013-08-27fixed tests for c56 and dailymotionM.Yasoob Ullah Khalid ☺
2013-08-22Merge branch 'master' into subtitles_reworkIsmael Mejia
2013-08-08[subtitles] Improved docs + new class for servers who don't supportIsmael Mejia
auto-caption
2013-08-08[internal] Improved subtitle architecture + (update inIsmael Mejia
youtube/dailymotion) The structure of subtitles was refined, you only need to implement one method that returns a dictionnary of the available subtitles (lang, url) to support all the subtitle options in a website. I updated the subtitle downloaders for youtube/dailymotion to show how it works.
2013-08-07[dailymotion] Added support for subtitles + new InfoExtractor forIsmael Mejia
generic subtitle download. The idea is that all subtitle downloaders must descend from SubtitlesIE and implement only three basic methods to achieve the complete subtitle download functionality. This will allow to reduce the code in YoutubeIE once it is rewritten.
2013-07-29[dailymotion] Add an extractor for Dailymotion playlistsJaime Marquínez Ferrándiz
2013-07-12InfoExtractor: add some helper methods to extract OpenGraph infoJaime Marquínez Ferrándiz
2013-07-05DailymotionIE: extract thumbnailJaime Marquínez Ferrándiz