Updated copyright and license.
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / EncodingOptions.java
index 9e7f2b4..2fca434 100755 (executable)
@@ -1,11 +1,11 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
- * Copyright (C) 2012, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
- * 
+ * Copyright (C) 2012 -- 2017-2015, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
+ *
  * This program is free software; you can redistribute it and/or
- * modify it under the terms of version 2 of the GNU General Public License
- * as published by the Free Software Foundation.
- */
+ * modify it under the terms of version 3 of the GNU Lesser General Public License
+ * or later as published by the Free Software Foundation.
+*/
 
 package eu.svjatoslav.meviz.encoder;
 
@@ -15,22 +15,104 @@ import java.util.List;
 
 public class EncodingOptions {
 
-       public BitrateParameter.bitrate videoBitrate = BitrateParameter.bitrate.MEDIUM;
+    private BitrateParameter.Bitrate videoBitrate = BitrateParameter.Bitrate.MEDIUM;
 
-       // public Bitrate audioBitrate;
+    private BitrateParameter.Bitrate audioBitrate = BitrateParameter.Bitrate.MEDIUM;
 
-       public boolean deinterlace = false;
+    private Integer targetFps;
 
-       public boolean recursive;
+    private boolean deinterlace = false;
 
-       public boolean testOnly;
+    private boolean recursive;
 
-       public boolean forPortablePlayer = false;
+    private boolean testOnly;
 
-       public File workingDirectory = new File(System.getProperty("user.dir"));
+    private boolean forPortablePlayer = false;
 
-       List<String> outputFormats = new ArrayList<String>();
+    private File workingDirectory = new File(System.getProperty("user.dir"));
 
-       List<String> inputPatterns = new ArrayList<String>();
+    private List<String> outputFormats = new ArrayList<>();
+
+    private List<String> inputPatterns = new ArrayList<>();
+
+    public BitrateParameter.Bitrate getAudioBitrate() {
+        return audioBitrate;
+    }
+
+    public void setAudioBitrate(final BitrateParameter.Bitrate audioBitrate) {
+        this.audioBitrate = audioBitrate;
+    }
+
+    public List<String> getInputPatterns() {
+        return inputPatterns;
+    }
+
+    public void setInputPatterns(final List<String> inputPatterns) {
+        this.inputPatterns = inputPatterns;
+    }
+
+    public List<String> getOutputFormats() {
+        return outputFormats;
+    }
+
+    public void setOutputFormats(final List<String> outputFormats) {
+        this.outputFormats = outputFormats;
+    }
+
+    public Integer getTargetFps() {
+        return targetFps;
+    }
+
+    public void setTargetFps(final Integer targetFps) {
+        this.targetFps = targetFps;
+    }
+
+    public BitrateParameter.Bitrate getVideoBitrate() {
+        return videoBitrate;
+    }
+
+    public void setVideoBitrate(final BitrateParameter.Bitrate videoBitrate) {
+        this.videoBitrate = videoBitrate;
+    }
+
+    public File getWorkingDirectory() {
+        return workingDirectory;
+    }
+
+    public void setWorkingDirectory(final File workingDirectory) {
+        this.workingDirectory = workingDirectory;
+    }
+
+    public boolean isDeinterlace() {
+        return deinterlace;
+    }
+
+    public void setDeinterlace(final boolean deinterlace) {
+        this.deinterlace = deinterlace;
+    }
+
+    public boolean isForPortablePlayer() {
+        return forPortablePlayer;
+    }
+
+    public void setForPortablePlayer(final boolean forPortablePlayer) {
+        this.forPortablePlayer = forPortablePlayer;
+    }
+
+    public boolean isRecursive() {
+        return recursive;
+    }
+
+    public void setRecursive(final boolean recursive) {
+        this.recursive = recursive;
+    }
+
+    public boolean isTestOnly() {
+        return testOnly;
+    }
+
+    public void setTestOnly(final boolean testOnly) {
+        this.testOnly = testOnly;
+    }
 
 }