XBMC Community Forum
CouchPotato - Automatic Movie Downloader via NZB & Torrents - Printable Version

+- XBMC Community Forum (http://forum.xbmc.org)
+-- Forum: Help and Support (/forumdisplay.php?fid=33)
+--- Forum: Supplementary Tools for XBMC (/forumdisplay.php?fid=116)
+--- Thread: CouchPotato - Automatic Movie Downloader via NZB & Torrents (/showthread.php?tid=75960)



- indy5 - 2010-09-17 23:45

RuudBurger Wrote:Small fix for better language search and for example the problem indy5 has with HDTV releases.
You can now set some words in Settings, you want to ignore.
For example: GERMAN, DUBBED, HDTV

Yes this is a dirty hack and not real language support, I know. But it should work, because real German movies aren't tagged with "GERMAN" unless the release group is retarded Wink

Where do you ignore words? I can't seem to find this setting.


- RuudBurger - 2010-09-17 23:48

Settings >> General, at the bottom.


- compcentral - 2010-09-18 00:28

RuudBurger Wrote:No, it just forces the time till the next check to 10 seconds Big Grin

Any way to make it actually force a check for all files regardless of ETA? Almost always the release groups post a movie before it is officially released... sometimes months in advance.


- RuudBurger - 2010-09-18 00:32

As I sayed, it is done automatically. If you have set the searching interval to 24 hours, it will "force search" every movie in you library every 48 hours.


- compcentral - 2010-09-18 00:41

RuudBurger Wrote:As I sayed, it is done automatically. If you have set the searching interval to 24 hours, it will "force search" every movie in you library every 48 hours.

Okay.. that is fine. I just thought it would be nice for us impatient types to be able to do a Force Check to look for everything. Nice progress so far tho man.


- indy5 - 2010-09-18 19:56

RuudBurger Wrote:Settings >> General, at the bottom.

Under Settings...General, all I have is the following:

Host, Port, Username, Password, launch browser, search every.

Nothing about specifying keywords to ignore.

I'm using build R20.


- compcentral - 2010-09-18 20:07

The new features will be included in the next compiled build (r21). To access this now, you need to be running from the github source. Hopefully r21 will be released soon. I too am eagerly awaiting it.


- RuudBurger - 2010-09-18 20:24

Windows build is coming within the next 3 hours Wink


- RuudBurger - 2010-09-18 21:37

New Windows build! Go go go!


- moep - 2010-09-18 23:42

CouchPotato works great for me, unfortunately it recently decided to have a field day with renaming and added an _UNKNOWN_ prefix to every single movie folder in my library that was not downloaded by CouchPotato itself.
I’ve disabled renaming for now.

In case anyone else has this problem, here’s a how to strip the prefix from all files:

Code:
for i in _UNKNOWN_*;do mv "$i" "$(echo $i|cut -c10-)";done