2011-12-27 13:54:25 -05:00
|
|
|
// filebot -script "http://filebot.sf.net/scripts/artwork.tmdb.groovy" -trust-script /path/to/media/
|
|
|
|
|
|
|
|
/*
|
2011-12-28 09:15:39 -05:00
|
|
|
* Fetch movie artwork. The movie is determined using the parent folders name.
|
2011-12-27 13:54:25 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
def fetchArtwork(outputFile, movieInfo, artworkType, artworkSize) {
|
|
|
|
// select and fetch artwork
|
|
|
|
def artwork = movieInfo.images.find { it.type == artworkType && it.size == artworkSize }
|
|
|
|
if (artwork == null) {
|
|
|
|
println "Artwork not found: $outputFile"
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
|
|
|
println "Fetching $outputFile => $artwork"
|
|
|
|
return artwork.url.saveAs(outputFile)
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def fetchNfo(outputFile, movieInfo) {
|
|
|
|
movieInfo.applyXmlTemplate('''<movie>
|
|
|
|
<title>$name</title>
|
2011-12-29 11:23:56 -05:00
|
|
|
<year>$released.year</year>
|
2011-12-27 13:54:25 -05:00
|
|
|
<rating>$rating</rating>
|
|
|
|
<votes>$votes</votes>
|
|
|
|
<plot>$overview</plot>
|
|
|
|
<runtime>$runtime</runtime>
|
|
|
|
<mpaa>$certification</mpaa>
|
2011-12-29 11:23:56 -05:00
|
|
|
<genre>${!genres.empty ? genres[0] : ''}</genre>
|
2011-12-27 13:54:25 -05:00
|
|
|
<id>tt${imdbId.pad(7)}</id>
|
|
|
|
</movie>
|
2012-03-29 22:57:43 -04:00
|
|
|
''')
|
|
|
|
.replaceAll(/\t|\r|\n/, '') // xbmc can't handle leading/trailing whitespace properly
|
|
|
|
.saveAs(outputFile)
|
2011-12-27 13:54:25 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
def fetchMovieArtworkAndNfo(movieDir, movie) {
|
|
|
|
println "Fetch nfo and artwork for $movie"
|
|
|
|
def movieInfo = TheMovieDB.getMovieInfo(movie, Locale.ENGLISH)
|
|
|
|
|
2011-12-28 19:51:00 -05:00
|
|
|
println movieInfo
|
|
|
|
movieInfo.images.each {
|
|
|
|
println "Available artwork: $it.url => $it"
|
|
|
|
}
|
|
|
|
|
2011-12-27 13:54:25 -05:00
|
|
|
// fetch nfo
|
|
|
|
fetchNfo(movieDir['movie.nfo'], movieInfo)
|
|
|
|
|
|
|
|
// fetch series banner, fanart, posters, etc
|
|
|
|
fetchArtwork(movieDir['folder.jpg'], movieInfo, 'poster', 'original')
|
|
|
|
fetchArtwork(movieDir['backdrop.jpg'], movieInfo, 'backdrop', 'original')
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-28 23:05:10 -05:00
|
|
|
args.eachMediaFolder { dir ->
|
2011-12-27 13:54:25 -05:00
|
|
|
def videos = dir.listFiles{ it.isVideo() }
|
|
|
|
|
|
|
|
def query = _args.query ?: dir.name
|
2012-01-03 23:09:17 -05:00
|
|
|
def options = TheMovieDB.searchMovie(query, _args.locale)
|
2011-12-27 13:54:25 -05:00
|
|
|
if (options.isEmpty()) {
|
|
|
|
println "Movie not found: $query"
|
|
|
|
return null
|
|
|
|
}
|
|
|
|
|
2012-01-03 08:44:31 -05:00
|
|
|
// sort by relevance
|
|
|
|
options = options.sortBySimilarity(query, { it.name })
|
|
|
|
|
2011-12-27 13:54:25 -05:00
|
|
|
// auto-select series
|
2012-01-03 08:44:31 -05:00
|
|
|
def movie = options[0]
|
|
|
|
|
2012-01-03 23:09:17 -05:00
|
|
|
// maybe require user input
|
|
|
|
if (options.size() != 1 && !_args.nonStrict && !java.awt.GraphicsEnvironment.headless) {
|
|
|
|
movie = javax.swing.JOptionPane.showInputDialog(null, "Please select Movie:", dir.path, 3, null, options.toArray(), movie);
|
2012-01-03 08:44:31 -05:00
|
|
|
if (movie == null) return null
|
|
|
|
}
|
2011-12-27 13:54:25 -05:00
|
|
|
|
2011-12-28 19:51:00 -05:00
|
|
|
println "$dir => $movie"
|
2012-03-23 13:45:50 -04:00
|
|
|
try {
|
|
|
|
fetchMovieArtworkAndNfo(dir, movie)
|
|
|
|
} catch(e) {
|
|
|
|
println "${e.class.simpleName}: ${e.message}"
|
|
|
|
}
|
2011-12-27 13:54:25 -05:00
|
|
|
}
|