// filebot -script "http://filebot.sf.net/scripts/artwork.tvdb.groovy" -trust-script /path/to/media/ /* * Fetch series and season banners for all tv shows. Series name is auto-detected if possible or the folder name is used. */ def fetchBanner(outputFile, series, bannerType, bannerType2 = null, season = null) { // select and fetch banner def banner = [_args.locale.language, null].findResult { TheTVDB.getBanner(series, [BannerType:bannerType, BannerType2:bannerType2, Season:season, Language:it]) } if (banner == null) { println "Banner not found: $outputFile / $bannerType:$bannerType2" return null } println "Fetching $outputFile => $banner" return banner.url.saveAs(outputFile) } def fetchNfo(outputFile, series) { def info = TheTVDB.getSeriesInfo(series, _args.locale) println info info.applyXmlTemplate(''' $name $firstAired.year -1 -1 -1 $rating $ratingCount $overview $runtime $contentRating $id http://www.thetvdb.com/api/1D62F2F90030C444/series/${id}/all/''' + _args.locale.language + '''.zip ${!genres.empty ? genres[0] : ''} $bannerUrl $firstAired $status $network actors.each { $it } ''') .replaceAll(/\t|\r|\n/, '') // xbmc can't handle leading/trailing whitespace properly .saveAs(outputFile) } def fetchSeriesBannersAndNfo(seriesDir, seasonDir, series, season) { println "Fetch nfo and banners for $series / Season $season" TheTVDB.getBannerList(series).each { println "Available banner: $it.url => $it" } // fetch nfo fetchNfo(seriesDir['tvshow.nfo'], series) // fetch series banner, fanart, posters, etc ["680x1000", null].findResult{ fetchBanner(seriesDir['folder.jpg'], series, "poster", it) } ["graphical", null].findResult{ fetchBanner(seriesDir['banner.jpg'], series, "series", it) } // fetch highest resolution fanart ["1920x1080", "1280x720", null].findResult{ fetchBanner(seriesDir["fanart.jpg"], series, "fanart", it) } // fetch season banners if (seasonDir != seriesDir) { fetchBanner(seasonDir["folder.jpg"], series, "season", "season", season) fetchBanner(seasonDir["banner.jpg"], series, "season", "seasonwide", season) } } args.eachMediaFolder { dir -> // fetch only missing artwork by default if (_args.conflict == "skip" && dir.hasFile{it =~ /tvshow.nfo$/} && dir.hasFile{it =~ /folder.jpg$/} && dir.hasFile{it =~ /banner.jpg$/}) { println "Skipping $dir" return } def videos = dir.listFiles{ it.isVideo() } def query = _args.query ?: detectSeriesName(videos, _args.locale) def sxe = videos.findResult{ parseEpisodeNumber(it) } if (query == null) { query = dir.dir.hasFile{ it.name =~ /Season/ && it.isDirectory() } ? dir.dir.name : dir.name } println "$dir => Search by $query" def options = TheTVDB.search(query, _args.locale) if (options.isEmpty()) { println "TV Series not found: $query" return } // sort by relevance options = options.sortBySimilarity(query, { it.name }) // auto-select series 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 } // auto-detect structure def seriesDir = [dir.dir, dir].sortBySimilarity(series.name, { it.name })[0] def season = sxe && sxe.season > 0 ? sxe.season : 1 println "$dir => $series" fetchSeriesBannersAndNfo(seriesDir, dir, series, season) }