1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04: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 {
Object o = xattr.getMetaInfo(file);
File f = file.getCanonicalFile();
ExpressionFormat formatter = new ExpressionFormat(format);
ExpressionFormat formatter = new ExpressionFormat(format);
Object o = xattr.getMetaInfo(file);
File f = file.getCanonicalFile();
try {
return formatter.format(new MediaBindingBean(o, f));
} catch (Exception e) {
debug.warning("Failed to read media info: " + e);
}
return null;
}