Search found 4 matches

by Raphy
23 Mar 2012, 09:51
Forum: Feature Requests and Bug Reports
Topic: Filenotfound exception when fetching movie info
Replies: 2
Views: 4178

Re: Filenotfound exception when fetching movie info

Seems to do the trick. Thank you very much! Here's is my modified script: // filebot -script "http://filebot.sf.net/scripts/artwork.tmdb.groovy" -trust-script /path/to/media/ /* * Fetch movie artwork. The movie is determined using the parent folders name. */ def fetchArtwork(outputFile, mo...
by Raphy
23 Mar 2012, 08:48
Forum: Feature Requests and Bug Reports
Topic: Filenotfound exception when fetching movie info
Replies: 2
Views: 4178

Filenotfound exception when fetching movie info

hello, I'm using the command-line for fetching movie info, with the script "artwork.tmdb.db": filebot -script [...]/filebot/artwork.tmdb.groovy -trust-script -non-strict Films It does find some movies, but quickly run into this error: /home/raphy/Films/./2012 => 2012 (2011) Fetch nfo and a...
by Raphy
22 Mar 2012, 11:01
Forum: Scripting and Automation
Topic: How to fetch media info and artwork only if not fetched
Replies: 3
Views: 4813

Re: How to fetch media info and artwork only if not fetched

it works awesomely well.

I added this piece of code to the main function:

Code: Select all

if (dir.hasFile{it =~ /nfo$/} || ( dir.hasFile{it =~ /banner.jpg$/} && dir.hasFile{it =~ /folder.jpg$/})) {
     println "Already scanned, skipping..."
     return;
}
Thank you very much Rednoah!
by Raphy
21 Mar 2012, 16:32
Forum: Scripting and Automation
Topic: How to fetch media info and artwork only if not fetched
Replies: 3
Views: 4813

How to fetch media info and artwork only if not fetched

Hello, First of all thanks for your wonderful software that is just awesome. I would like this script ( http://filebot.sourceforge.net/scripts/artwork.tmdb.groovy, and the tv shows counterpart) to be periodically run by a crontab on my media center. I don't want to use renaming/moving possibilities ...