1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-24 00:38:52 -05:00

Fix getMediaInfo() issues

This commit is contained in:
Reinhard Pointner 2016-10-28 21:51:45 +08:00
parent fb17c4feae
commit a42ee00b57

View File

@ -434,15 +434,17 @@ public abstract class ScriptShellBaseClass extends Script {
}
public String getMediaInfo(File file, String format) throws Exception {
try {
ExpressionFormat formatter = new ExpressionFormat(format);
Object o = xattr.getMetaInfo(file);
File f = file.getCanonicalFile();
ExpressionFormat formatter = new ExpressionFormat(format);
try {
return formatter.format(new MediaBindingBean(o, f));
} catch (Exception e) {
debug.warning("Failed to read media info: " + e);
}
return null;
}