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 ...
Search found 4 matches
- 23 Mar 2012, 09:51
- Forum: Feature Requests and Bug Reports
- Topic: Filenotfound exception when fetching movie info
- Replies: 2
- Views: 5126
- 23 Mar 2012, 08:48
- Forum: Feature Requests and Bug Reports
- Topic: Filenotfound exception when fetching movie info
- Replies: 2
- Views: 5126
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 ...
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 ...
- 22 Mar 2012, 11:01
- Forum: Scripting and Automation
- Topic: How to fetch media info and artwork only if not fetched
- Replies: 3
- Views: 6723
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:
Thank you very much Rednoah!
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;
}- 21 Mar 2012, 16:32
- Forum: Scripting and Automation
- Topic: How to fetch media info and artwork only if not fetched
- Replies: 3
- Views: 6723
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 ...
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 ...