* ignore sample files
* if rename() fails just keep on going
This commit is contained in:
parent
19b6dd47d2
commit
c40c53c53c
|
@ -16,6 +16,9 @@ input += extract(file:input, output:".", conflict:"override")
|
||||||
// process only media files
|
// process only media files
|
||||||
input = input.findAll{ it.isVideo() || it.isSubtitle() }
|
input = input.findAll{ it.isVideo() || it.isSubtitle() }
|
||||||
|
|
||||||
|
// ignore clutter files
|
||||||
|
input = input.findAll{ !(it.name =~ /(?i:sample)/) }
|
||||||
|
|
||||||
// print input fileset
|
// print input fileset
|
||||||
input.each{ println "Input: $it" }
|
input.each{ println "Input: $it" }
|
||||||
|
|
||||||
|
@ -49,7 +52,7 @@ groups.each{ group, files ->
|
||||||
// EPISODE MODE
|
// EPISODE MODE
|
||||||
if (group.tvs && !group.mov) {
|
if (group.tvs && !group.mov) {
|
||||||
def dest = rename(file:files, format:'TV Shows/{n}/{episode.special ? "Special" : "Season "+s}/{n} - {episode.special ? "S00E"+special.pad(2) : s00e00} - {t}', db:'TheTVDB')
|
def dest = rename(file:files, format:'TV Shows/{n}/{episode.special ? "Special" : "Season "+s}/{n} - {episode.special ? "S00E"+special.pad(2) : s00e00} - {t}', db:'TheTVDB')
|
||||||
|
if (dest) {
|
||||||
dest.mapByFolder().keySet().each{ dir ->
|
dest.mapByFolder().keySet().each{ dir ->
|
||||||
println "Fetching artwork for $dir from TheTVDB"
|
println "Fetching artwork for $dir from TheTVDB"
|
||||||
def query = group.tvs
|
def query = group.tvs
|
||||||
|
@ -63,16 +66,18 @@ groups.each{ group, files ->
|
||||||
fetchSeriesArtworkAndNfo(dir.dir, dir, options[0], sxe && sxe.season > 0 ? sxe.season : 1)
|
fetchSeriesArtworkAndNfo(dir.dir, dir, options[0], sxe && sxe.season > 0 ? sxe.season : 1)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
// MOVIE MODE
|
// MOVIE MODE
|
||||||
if (group.mov && !group.tvs) {
|
if (group.mov && !group.tvs) {
|
||||||
def dest = rename(file:files, format:'Movies/{n} ({y})/{n} ({y}){" CD$pi"}', db:'TheMovieDB')
|
def dest = rename(file:files, format:'Movies/{n} ({y})/{n} ({y}){" CD$pi"}', db:'TheMovieDB')
|
||||||
|
if (dest) {
|
||||||
dest.mapByFolder().keySet().each{ dir ->
|
dest.mapByFolder().keySet().each{ dir ->
|
||||||
println "Fetching artwork for $dir from TheMovieDB"
|
println "Fetching artwork for $dir from TheMovieDB"
|
||||||
fetchMovieArtworkAndNfo(dir, group.mov)
|
fetchMovieArtworkAndNfo(dir, group.mov)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue