1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-08-13 17:03:45 -04:00

* make it easier to use previously stored xattr metadata

This commit is contained in:
Reinhard Pointner 2014-10-21 11:32:22 +00:00
parent 9f3794b0af
commit ac2ce69495

View File

@ -1117,7 +1117,7 @@ public class CmdlineOperations implements CmdlineInterface {
@Override
public String getMediaInfo(File file, String expression) throws Exception {
ExpressionFormat format = new ExpressionFormat(expression != null ? expression : "{fn} [{resolution} {af} {vc} {ac}]");
return format.format(new MediaBindingBean(file, file, null));
return format.format(new MediaBindingBean(readMetaInfo(file), file, null));
}
@Override