summaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/dailymotion.py
Commit message (Collapse)AuthorAgeFilesLines
...
* [dailymotion] Fix extraction of vevo videos (fixes #4168)Jaime Marquínez Ferrándiz2014-11-121-1/+1
|
* [dailymotion] Alternative title search (Fixes #3882)Philipp Hagemeister2014-10-051-13/+14
|
* Move playlist tests to extractors.Philipp Hagemeister2014-08-281-11/+29
| | | | 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).
* [dailymotion] Correct test casePhilipp Hagemeister2014-08-271-29/+31
|
* [Dailymotion] fix uploader name (fixes #3153)Petr Půlpán2014-06-251-1/+1
|
* [dailymotion] Fix user playlist extractionSergey M․2014-04-231-5/+5
|
* Remove unused importsPhilipp Hagemeister2014-04-191-1/+0
|
* [dailymotion:playlist] Fix titlePhilipp Hagemeister2014-04-111-5/+6
|
* Remove unused importsPhilipp Hagemeister2014-04-041-1/+0
|
* [dailymotion] Fix playlist+userPhilipp Hagemeister2014-04-041-6/+4
|
* [dailymotion] Convert width and height fields from strings to integersJaime Marquínez Ferrándiz2014-03-041-1/+2
|
* [daylimotion] Add support for urls from the mobile site (fixes #1953)Jaime Marquínez Ferrándiz2013-12-141-2/+2
| | | | It uses the 'touch' subdomain and adds a '#' before 'video'
* [dailymotion] Fix view count extraction and make it non fatal (fixes #1940)Jaime Marquínez Ferrándiz2013-12-101-2/+4
|
* [dailymotion] Fix uploader extractionJaime Marquínez Ferrándiz2013-12-101-5/+1
| | | | Now it looks directly in the info dictionary
* [dailymotion] Fix view count regexJaime Marquínez Ferrándiz2013-12-061-1/+1
| | | | In some languages they can be in the format '123,456' instead of '123.456'
* [dailymotion] Extract view count (#1895)Jaime Marquínez Ferrándiz2013-12-061-0/+5
|
* [dailymotion] Fix playlistsPhilipp Hagemeister2013-11-161-1/+1
|
* Merge branch 'ted_subtitles'Ismaël Mejía2013-11-021-3/+3
|\
| * [subtitles] refactor to support websites with subtitle information theIsmaël Mejía2013-11-021-3/+3
| | | | | | | | | | | | | | | | 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.
* | [dailymotion] Fix support for age-restricted videos (Fixes #1688)Philipp Hagemeister2013-10-311-4/+19
| |
* | [dailymotion] Extract all the available formats (closes #1028)Jaime Marquínez Ferrándiz2013-10-231-14/+27
|/
* [dailymotion] Fix playlist extractionJaime Marquínez Ferrándiz2013-10-041-2/+3
| | | | The html code has changed, make the video ids extraction more solid.
* [dailymotion] Detect vevo videos (fixes #1532)Jaime Marquínez Ferrándiz2013-10-011-9/+34
| | | | All videos from the Vevo user, just embed videos from vevo.com
* [dailymotion] Disable the family filter in the playlists (fixes #1524)Jaime Marquínez Ferrándiz2013-09-291-5/+12
|
* [dailymotion] Add an extractor for users (closes #1476)Jaime Marquínez Ferrándiz2013-09-211-9/+35
|
* [dailymotion] Raise ExtractorError if the dailymotion response reports an errorJaime Marquínez Ferrándiz2013-09-211-0/+3
|
* [subtitles] Use self._download_webpage for extracting the subtitlesJaime Marquínez Ferrándiz2013-09-111-6/+4
| | | | It raises ExtractorError for the same exceptions we have to catch.
* [subtitles] Simplify the extraction of subtitles in subclasses and remove ↵Jaime Marquínez Ferrándiz2013-09-111-10/+3
| | | | | | | 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 {}.
* [subtitles] rename SubitlesIE to SubtitlesInfoExtractorJaime Marquínez Ferrándiz2013-09-111-2/+2
| | | | Otherwise it can be automatically detected as a IE ready for use.
* [subtitles] made inheritance hierarchy flat as requestedIsmael Mejia2013-09-111-17/+15
|
* Merge branch 'master' into subtitles_reworkIsmael Mejia2013-09-061-3/+5
|\
| * [daylimotion] accept embed urls (fixes #1386)Jaime Marquínez Ferrándiz2013-09-061-1/+2
| |
| * [dailymotion] improve the regex for extracting the video infoJaime Marquínez Ferrándiz2013-09-031-1/+2
| |
| * fixed tests for c56 and dailymotionM.Yasoob Ullah Khalid ☺2013-08-271-1/+1
| |
* | Merge branch 'master' into subtitles_reworkIsmael Mejia2013-08-281-4/+5
|\|
* | Merge branch 'master' into subtitles_reworkIsmael Mejia2013-08-221-2/+30
|\|
| * [dailymotion] Add an extractor for Dailymotion playlistsJaime Marquínez Ferrándiz2013-07-291-0/+31
| |
* | [subtitles] Improved docs + new class for servers who don't supportIsmael Mejia2013-08-081-7/+2
| | | | | | | | auto-caption
* | [internal] Improved subtitle architecture + (update inIsmael Mejia2013-08-081-13/+2
| | | | | | | | | | | | | | | | | | 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.
* | [dailymotion] Added support for subtitles + new InfoExtractor forIsmael Mejia2013-08-071-6/+61
|/ | | | | | | | | 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.
* InfoExtractor: add some helper methods to extract OpenGraph infoJaime Marquínez Ferrándiz2013-07-121-4/+1
|
* DailymotionIE: extract thumbnailJaime Marquínez Ferrándiz2013-07-051-0/+1
|
* DailymotionIE: simplify the extraction of the title and remove an unused ↵Jaime Marquínez Ferrándiz2013-07-051-7/+2
| | | | assignment of video_uploader
* Dailymotion: fix the download of the video in the max quality (closes #986)Jaime Marquínez Ferrándiz2013-07-051-20/+20
|
* Move tests to the IE definitionsPhilipp Hagemeister2013-06-271-0/+9
|
* Move DailyMotion into its own filePhilipp Hagemeister2013-06-231-0/+77