possibility to quickly encode video for portable players
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / EncodingOptions.java
index a2f09d8..9e7f2b4 100755 (executable)
@@ -15,7 +15,7 @@ import java.util.List;
 
 public class EncodingOptions {
 
-       public Bitrate.bitrate videoBitrate = Bitrate.bitrate.MEDIUM;
+       public BitrateParameter.bitrate videoBitrate = BitrateParameter.bitrate.MEDIUM;
 
        // public Bitrate audioBitrate;
 
@@ -23,10 +23,10 @@ public class EncodingOptions {
 
        public boolean recursive;
 
-       public boolean terminal;
-
        public boolean testOnly;
 
+       public boolean forPortablePlayer = false;
+
        public File workingDirectory = new File(System.getProperty("user.dir"));
 
        List<String> outputFormats = new ArrayList<String>();