aboutsummaryrefslogtreecommitdiffstats
path: root/youtube_dl/extractor/comedycentral.py
Commit message (Collapse)AuthorAgeFilesLines
* [comedycentral] Fix youtube-dl :thedailyshowPhilipp Hagemeister2015-09-301-6/+1
| | | | We'll let the generic IE follow the redirect and call back to us with the episode URL
* [comedycentral] Fix feed uri request (Closes #5449, closes #5455)Sergey M․2015-04-171-1/+1
|
* Adding subtitlesPishPosh.McGee2015-02-261-0/+3
|
* Fix flake8 errorsJaime Marquínez Ferrándiz2015-01-311-19/+22
|
* [comedycentral:shows] Generate better IDs and add a test for thatPhilipp Hagemeister2015-01-301-1/+33
|
* [comedycentral:shows] Remove references to colbert reportPhilipp Hagemeister2015-01-221-2/+2
|
* [comedycentral] Match URLs with a second ID (fixes #4499)Philipp Hagemeister2014-12-171-1/+4
|
* Fix imports and general cleanupPhilipp Hagemeister2014-12-131-1/+3
| | | | | | | | · 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
* [comedycentral] ModernizePhilipp Hagemeister2014-11-201-3/+1
|
* remove unused importsPhilipp Hagemeister2014-11-201-1/+0
|
* [ComedyCentralShows] Use the rtmp urls transform function from the MTV IE ↵Jaime Marquínez Ferrándiz2014-11-141-12/+1
| | | | | | (fixes #3364) It produces the right mp4 urls, so we stop prefering the rtmp urls.
* [comedycentral] Prefer RTMP for nowPhilipp Hagemeister2014-09-011-0/+3
|
* [comedycentral] Support news-team URLs (Fixes #3649)Philipp Hagemeister2014-09-011-1/+4
|
* [comedycentral] Move tests to the extractor itselfPhilipp Hagemeister2014-09-011-2/+26
|
* [comedycentral] Only recognize the cc.com domainJaime Marquínez Ferrándiz2014-07-161-2/+2
| | | | The old comedycentral.com urls redirect to the new urls.
* [comedycentral] Recognize 'full-episodes' urls (fixes #3277)Jaime Marquínez Ferrándiz2014-07-161-1/+1
|
* [comedycentral] Correct handling when latest tds episode is a ↵Philipp Hagemeister2014-06-241-1/+1
| | | | special-episode instead of a regular one
* [comedycentralshows] Transform the rtmp urls so that rtmpdump can download ↵Jaime Marquínez Ferrándiz2014-05-301-1/+1
| | | | | | them (fixes #3010) From 'rtmpe://viacomccstrmfs.fplive.net/viacomccstrm/gsp.comedystor/*' to 'rtmpe://viacommtvstrmfs.fplive.net:1935/viacommtvstrm/gsp.comedystor/*'
* [comedycentral:shows] Add support for TDS special editions (Fixes #2733)Philipp Hagemeister2014-04-111-1/+1
|
* [comedycentral] Fix test md5sumPhilipp Hagemeister2014-04-111-1/+1
|
* [comedycentral] Match more URLsPhilipp Hagemeister2014-04-091-2/+2
| | | | Looks like they only offer clips instead of full episodes now. We'll need to add new parsing code as well.
* [comedycentral:shows] Do no include 6-digit identifier in display IDPhilipp Hagemeister2014-04-031-1/+1
|
* [comedycentral:shows] Support guest/ URLs (Fixes #2677)Philipp Hagemeister2014-04-031-1/+1
|
* [comedycentral] Change XPath .//guid to ./guid (fixes #2668)Jaime Marquínez Ferrándiz2014-04-011-1/+1
| | | | | It fails to find the element in python 2.6 and it's not required, the element is a direct child of the item node.
* [comedycentral] Update test title for 34cbc7ee8db36e85d2021455f468c5dc2da616b8Jaime Marquínez Ferrándiz2014-04-011-1/+1
|
* [comedycentral] Allow URLs with query parts (fixes #2661)Philipp Hagemeister2014-04-011-2/+3
|
* [comedycentral] Add support for /videos URLs (Fixes #2660)Philipp Hagemeister2014-04-011-2/+5
|
* [comedycentral] Duration can now be a float (Fixes #2647)Philipp Hagemeister2014-03-281-2/+2
|
* [comedycentral] fix TDS extended interviewsMark Lee2014-03-261-2/+2
| | | | | The new website broke the URL format. Added "playlist" as a valid ID keyword.
* [comedycentral] Better titlesPhilipp Hagemeister2014-03-251-2/+2
|
* [comedycentral] Correct uri (Fixes #2627)Philipp Hagemeister2014-03-251-0/+3
|
* [comedycentral] Fix thedailyshow / thecolbertreport (Fixes #2600, #2596)Philipp Hagemeister2014-03-251-56/+64
|
* Update to comedycentral.py (cc.com)ericpardee2014-03-171-1/+1
| | | Added cc.com as it's same as comedycentral.com and used, i.e. http://www.cc.com/video-clips/fmyq0m/broad-city-a-beautiful-railroad-style-apartment
* [comedycentral] Improve regexesdst2014-01-301-2/+2
|
* [comedycentral] Use the generic `_real_extract` provided by the base classJaime Marquínez Ferrándiz2014-01-221-8/+0
|
* [comedycentral] Use unicode_literalsPhilipp Hagemeister2014-01-221-30/+32
|
* [comedycentral] Adapt testcasePhilipp Hagemeister2014-01-221-1/+1
| | | | In contrast to other sites, ComedyCentral seems to understand how to sensibly use MTV IE, but the additional text shouldn't hurt.
* [comedycentral] Recognize ‘video-collections’ urls (#2072)Jaime Marquínez Ferrándiz2014-01-011-1/+3
|
* Merge remote-tracking branch 'dstftw/correct-valid-urls'Philipp Hagemeister2013-12-041-1/+1
|\
| * Correct some extractor _VALID_URL regexesdst2013-12-041-1/+1
| |
* | Move common code for extractors based in MTV services to a new base classJaime Marquínez Ferrándiz2013-12-031-8/+2
| | | | | | | | Removes the duplication of the thumbnail extraction code (only MTVIE needs to override it)
* | Remove the compatibility code used before the new format system was implementedJaime Marquínez Ferrándiz2013-12-031-7/+2
|/
* Use the new '_download_xml' helper in more extractorsJaime Marquínez Ferrándiz2013-11-261-5/+2
|
* [comedycentral] Add support for comedycentral.com videos (closes #1824)Jaime Marquínez Ferrándiz2013-11-241-1/+32
| | | | | | It's a subclass of MTVIE The extractor for colbertnation.com and thedailyshow.com is called now ComedyCentralShowsIE
* [comedycentral] Prepare for generic video extraction (#980)Philipp Hagemeister2013-10-041-35/+28
|
* ComedyCentralIE: support the extended interviews urls (fixes #1079)Jaime Marquínez Ferrándiz2013-07-211-1/+6
|
* Add --list-extractor-descriptions (human-readable list of IEs)Philipp Hagemeister2013-07-011-2/+1
|
* Move tests to the IE definitionsPhilipp Hagemeister2013-06-271-0/+11
|
* ComedycentralIE: Force conversion of the description to unicode (close #941)Jaime Marquínez Ferrándiz2013-06-261-1/+1
| | | | When writing to a file it would fail.
* Move comedycentral into its own filePhilipp Hagemeister2013-06-231-0/+179