2011-12-27 18:54:25 +00:00
|
|
|
// filebot -script "http://filebot.sf.net/scripts/artwork.tvdb.groovy" -trust-script /path/to/media/
|
2011-12-20 13:00:38 +00:00
|
|
|
|
|
|
|
/*
|
2011-12-28 14:15:39 +00:00
|
|
|
* Fetch series and season banners for all tv shows. Series name is auto-detected if possible or the folder name is used.
|
2011-12-20 13:00:38 +00:00
|
|
|
*/
|
|
|
|
|
2011-12-29 00:51:00 +00:00
|
|
|
def fetchBanner(outputFile, series, bannerType, bannerType2 = null, season = null) {
|
2011-12-20 13:00:38 +00:00
|
|
|
// select and fetch banner
|
2011-12-30 10:35:26 +00:00
|
|
|
def banner = ['en', null].findResult { TheTVDB.getBanner(series, [BannerType:bannerType, BannerType2:bannerType2, Season:season, Language:it]) }
|
2011-12-20 13:00:38 +00:00
|
|
|
if (banner == null) {
|
2011-12-29 00:51:00 +00:00
|
|
|
println "Banner not found: $outputFile / $bannerType:$bannerType2"
|
2011-12-21 02:39:25 +00:00
|
|
|
return null
|
2011-12-20 13:00:38 +00:00
|
|
|
}
|
2011-12-21 08:31:57 +00:00
|
|
|
|
2011-12-27 18:54:25 +00:00
|
|
|
println "Fetching $outputFile => $banner"
|
2011-12-22 19:36:31 +00:00
|
|
|
return banner.url.saveAs(outputFile)
|
2011-12-20 13:00:38 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-22 19:36:31 +00:00
|
|
|
def fetchNfo(outputFile, series) {
|
2012-01-04 04:09:17 +00:00
|
|
|
def info = TheTVDB.getSeriesInfo(series, _args.locale)
|
2011-12-29 00:51:00 +00:00
|
|
|
println info
|
|
|
|
info.applyXmlTemplate('''<tvshow xmlns:gsp='http://groovy.codehaus.org/2005/gsp'>
|
2011-12-22 19:36:31 +00:00
|
|
|
<title>$name</title>
|
2011-12-29 16:23:56 +00:00
|
|
|
<year>$firstAired.year</year>
|
2011-12-22 19:36:31 +00:00
|
|
|
<rating>$rating</rating>
|
|
|
|
<votes>$ratingCount</votes>
|
|
|
|
<plot>$overview</plot>
|
|
|
|
<runtime>$runtime</runtime>
|
|
|
|
<mpaa>$contentRating</mpaa>
|
2011-12-29 16:23:56 +00:00
|
|
|
<genre>${!genres.empty ? genres[0] : ''}</genre>
|
2011-12-22 19:36:31 +00:00
|
|
|
<id>$id</id>
|
|
|
|
<thumb>$bannerUrl</thumb>
|
2011-12-25 04:28:09 +00:00
|
|
|
<premiered>$firstAired</premiered>
|
2011-12-22 19:36:31 +00:00
|
|
|
<status>$status</status>
|
|
|
|
<studio>$network</studio>
|
|
|
|
<gsp:scriptlet> actors.each { </gsp:scriptlet>
|
2011-12-29 04:05:10 +00:00
|
|
|
<actor>
|
|
|
|
<name>$it</name>
|
|
|
|
</actor>
|
2011-12-22 19:36:31 +00:00
|
|
|
<gsp:scriptlet> } </gsp:scriptlet>
|
|
|
|
</tvshow>
|
|
|
|
''').saveAs(outputFile)
|
2011-12-21 08:31:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-22 19:36:31 +00:00
|
|
|
def fetchSeriesBannersAndNfo(seriesDir, seasonDir, series, season) {
|
|
|
|
println "Fetch nfo and banners for $series / Season $season"
|
2011-12-27 18:54:25 +00:00
|
|
|
|
2011-12-29 01:31:11 +00:00
|
|
|
TheTVDB.getBannerList(series).each {
|
2011-12-29 00:51:00 +00:00
|
|
|
println "Available banner: $it.url => $it"
|
|
|
|
}
|
|
|
|
|
2011-12-21 08:31:57 +00:00
|
|
|
// fetch nfo
|
2011-12-22 19:36:31 +00:00
|
|
|
fetchNfo(seriesDir['tvshow.nfo'], series)
|
2011-12-29 00:51:00 +00:00
|
|
|
|
2011-12-21 02:39:25 +00:00
|
|
|
// fetch series banner, fanart, posters, etc
|
2011-12-29 00:51:00 +00:00
|
|
|
["680x1000", null].findResult{ fetchBanner(seriesDir['folder.jpg'], series, "poster", it) }
|
|
|
|
["graphical", null].findResult{ fetchBanner(seriesDir['banner.jpg'], series, "series", it) }
|
2011-12-21 02:39:25 +00:00
|
|
|
|
|
|
|
// fetch highest resolution fanart
|
2011-12-29 00:51:00 +00:00
|
|
|
["1920x1080", "1280x720", null].findResult{ fetchBanner(seriesDir["fanart.jpg"], series, "fanart", it) }
|
2011-12-20 13:00:38 +00:00
|
|
|
|
|
|
|
// fetch season banners
|
2011-12-22 19:36:31 +00:00
|
|
|
if (seasonDir != seriesDir) {
|
|
|
|
fetchBanner(seasonDir["folder.jpg"], series, "season", "season", season)
|
|
|
|
fetchBanner(seasonDir["banner.jpg"], series, "season", "seasonwide", season)
|
2011-12-20 13:00:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-12-29 04:05:10 +00:00
|
|
|
args.eachMediaFolder { dir ->
|
2011-12-22 19:36:31 +00:00
|
|
|
def videos = dir.listFiles{ it.isVideo() }
|
2011-12-20 13:00:38 +00:00
|
|
|
|
2012-01-04 04:09:17 +00:00
|
|
|
def query = _args.query ?: detectSeriesName(videos, _args.locale)
|
2011-12-22 19:36:31 +00:00
|
|
|
def sxe = videos.findResult{ parseEpisodeNumber(it) }
|
2011-12-20 13:00:38 +00:00
|
|
|
|
2011-12-22 19:36:31 +00:00
|
|
|
if (query == null) {
|
2011-12-27 18:54:25 +00:00
|
|
|
query = dir.dir.hasFile{ it.name =~ /Season/ && it.isDirectory() } ? dir.dir.name : dir.name
|
2011-12-21 02:39:25 +00:00
|
|
|
}
|
|
|
|
|
2011-12-29 00:51:00 +00:00
|
|
|
println "$dir => Search by $query"
|
2012-01-04 04:09:17 +00:00
|
|
|
def options = TheTVDB.search(query, _args.locale)
|
2011-12-20 13:00:38 +00:00
|
|
|
if (options.isEmpty()) {
|
2011-12-22 19:36:31 +00:00
|
|
|
println "TV Series not found: $query"
|
2011-12-27 18:54:25 +00:00
|
|
|
return null
|
2011-12-20 13:00:38 +00:00
|
|
|
}
|
|
|
|
|
2012-01-04 04:09:17 +00:00
|
|
|
// sort by relevance
|
|
|
|
options = options.sortBySimilarity(query, { it.name })
|
|
|
|
|
2011-12-22 19:36:31 +00:00
|
|
|
// auto-select series
|
2012-01-04 04:09:17 +00:00
|
|
|
def series = options[0]
|
|
|
|
|
|
|
|
// maybe require user input
|
|
|
|
if (options.size() != 1 && !_args.nonStrict && !java.awt.GraphicsEnvironment.headless) {
|
|
|
|
series = javax.swing.JOptionPane.showInputDialog(null, "Please select TV Show:", dir.path, 3, null, options.toArray(), series);
|
|
|
|
if (series == null) return null
|
|
|
|
}
|
2011-12-22 19:36:31 +00:00
|
|
|
|
|
|
|
// auto-detect structure
|
2011-12-27 18:54:25 +00:00
|
|
|
def seriesDir = [dir.dir, dir].sortBySimilarity(series.name, { it.name })[0]
|
2011-12-22 19:36:31 +00:00
|
|
|
def season = sxe && sxe.season > 0 ? sxe.season : 1
|
|
|
|
|
2011-12-29 00:51:00 +00:00
|
|
|
println "$dir => $series"
|
|
|
|
fetchSeriesBannersAndNfo(seriesDir, dir, series, season)
|
2011-12-20 13:00:38 +00:00
|
|
|
}
|