mirror of
https://github.com/mitb-archive/filebot
synced 2024-11-11 03:45:06 -05:00
10 lines
339 B
Groovy
10 lines
339 B
Groovy
// filebot -script "http://filebot.sourceforge.net/data/shell/mi.groovy" --format "{fn} [{resolution} {af} {vc} {ac}]" <folder>
|
|
|
|
/*
|
|
* Print media info for all video files using given or default format pattern
|
|
*/
|
|
args.getFiles()
|
|
.findAll { it.isVideo() }
|
|
.sort { a, b -> a.name.compareTo(b.name) }
|
|
.each { println getMediaInfo(file:it) }
|