Implement cli parameter basis

This commit is contained in:
2022-03-20 20:49:34 +01:00
parent f2fb296698
commit feaeda746a
7 changed files with 148 additions and 39 deletions

View File

@@ -0,0 +1,17 @@
package at.pcgamingfreaks.mkvaudiosubtitlechanger.util;
public enum MkvToolNix {
MKV_MERGER("mkvmerge.exe"),
MKV_PROP_EDIT("mkvpropedit.exe");
private final String file;
MkvToolNix(String file) {
this.file = file;
}
@Override
public String toString() {
return file;
}
}