aboutsummaryrefslogtreecommitdiff
path: root/youtube_dl/extractor/dailymotion.py
AgeCommit message (Collapse)Author
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
2013-07-05DailymotionIE: simplify the extraction of the title and remove an unused ↵Jaime Marquínez Ferrándiz
assignment of video_uploader
2013-07-05Dailymotion: fix the download of the video in the max quality (closes #986)Jaime Marquínez Ferrándiz
2013-06-27Move tests to the IE definitionsPhilipp Hagemeister
2013-06-23Move DailyMotion into its own filePhilipp Hagemeister