![]() |
|
TMDb scraper feature request: support adult titles - Printable Version +- XBMC Community Forum (http://forum.xbmc.org) +-- Forum: Development (/forumdisplay.php?fid=32) +--- Forum: Scraper Development (/forumdisplay.php?fid=60) +--- Thread: TMDb scraper feature request: support adult titles (/showthread.php?tid=130827) Pages: 1 2 |
TMDb scraper feature request: support adult titles - Alexqw - 2012-05-06 13:59 Hello, Recently TMDb added support to allow searching for adult films via the API. It would be great to see this feature added to the TMDb scraper - possibly as a configurable setting. ---Alex RE: TMDb scraper feature request: support adult titles - flobbes - 2012-05-19 13:37 I remember that I read that xbmc doens't want to naturaly support adult media/scrapers, so I don't think it will be added on the official repository. I took a look at the scraper and the api and it ist very simple to add this feature. Just replace the following line from CreateSearchUrl: Code: <RegExp input="$$1" output="<url>http://api.themoviedb.org/3/search/movie?api_key=57983e31fb435df4df77afb854740ea9&query=\1$$4&language=$INFO[language]</url>" dest="3">with the following line: Code: <RegExp input="$$1" output="<url>http://api.themoviedb.org/3/search/movie?api_key=57983e31fb435df4df77afb854740ea9&include_adult=true&amp;query=\1$$4&amp;language=$INFO[language]</url>" dest="3">RE: TMDb scraper feature request: support adult titles - kemik - 2012-07-01 23:43 Hi, Could someone please explain how I can make the changes shown above on XBMC on my Apple TV please? What file is this in and what is the best way to edit that file? Thx RE: TMDb scraper feature request: support adult titles - Alexqw - 2013-03-08 16:32 (2012-05-19 13:37)flobbes Wrote: I remember that I read that xbmc doens't want to naturaly support adult media/scrapers, so I don't think it will be added on the official repository.Do you have a link for where you found that information? As long as it is implimented as a configurable option (off by default), then I don't see how people who are offended by adult content would be exposed to it. Especially if 1) adult content is off by default and 2) they don't have any adult content in their library. I'm willing to make the modifications neccesary to the TMDB scraper, but only if it actually has a chance to make it into the official release. Thoughts? ---Alex RE: TMDb scraper feature request: support adult titles - olympia - 2013-03-13 09:07 No chance. Re: TMDb scraper feature request: support adult titles - jayleekay - 2013-03-13 09:25 The adult addon repo has an adult scraper you can download. RE: TMDb scraper feature request: support adult titles - Alexqw - 2013-03-13 13:45 (2013-03-13 09:25)jayleekay Wrote: The adult addon repo has an adult scraper you can download.I'm not interested in just any "adult scraper." I'm interesting in pulling the existing adult titles that are already in TMDB. I still don't see why this would be a problem if it's a configurable option. Part of the reason I want to use TMDB is that 1) I've already contributed to them, and 2) scanning a unified movie collection with multiple scrapers is not easy (please correct me if I am wrong on this). ---Alex RE: TMDb scraper feature request: support adult titles - olympia - 2013-03-13 14:12 (2013-03-13 13:45)Alexqw Wrote: I'm not interested in just any "adult scraper." I'm interesting in pulling the existing adult titles that are already in TMDB. So what blocks you to use the above mentioned modification which makes this possible for you? RE: TMDb scraper feature request: support adult titles - Alexqw - 2013-03-13 14:34 (2013-03-13 14:12)olympia Wrote: So what blocks you to use the above mentioned modification which makes this possible for you?Nothing blocks me from doing it just for myself. I just would rather commit this enhancement to the official TMDB scraper so that others may benefit from this feature. Also, this would save me the effort of tracking my patch and reapplying locally with every official update to the TMDB scraper. You know, the driving spirit behind open source development. Is this unreasonable? I feel like I'm missing something because I don't see why it's a problem to commit a small change that gives users configurable access to additional information from an already used service about films in their collection. Is the problem really just that the info will be from a genre of films some people don't like? ---Alex Re: RE: TMDb scraper feature request: support adult titles - Martijn - 2013-03-13 14:42 (2013-03-13 14:34)Alexqw Wrote:(2013-03-13 14:12)olympia Wrote: So what blocks you to use the above mentioned modification which makes this possible for you?Nothing blocks me from doing it just for myself. I just would rather commit this enhancement to the official TMDB scraper so that others may benefit from this feature. Also, this would save me the effort of tracking my patch and reapplying locally with every official update to the TMDB scraper. You know, the driving spirit behind open source development. Because we will not allow adult scraping in the official version. |