Disabled terminal commandline option.
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / EncodingOptions.java
1 /*
2  * Meviz - Various tools collection to work with multimedia.
3  * Copyright (C) 2012, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
4  * 
5  * This program is free software; you can redistribute it and/or
6  * modify it under the terms of version 2 of the GNU General Public License
7  * as published by the Free Software Foundation.
8  */
9
10 package eu.svjatoslav.meviz.encoder;
11
12 import java.io.File;
13 import java.util.ArrayList;
14 import java.util.List;
15
16 public class EncodingOptions {
17
18         public BitrateParameter.bitrate videoBitrate = BitrateParameter.bitrate.MEDIUM;
19
20         // public Bitrate audioBitrate;
21
22         public boolean deinterlace = false;
23
24         public boolean recursive;
25
26         public boolean testOnly;
27
28         public File workingDirectory = new File(System.getProperty("user.dir"));
29
30         List<String> outputFormats = new ArrayList<String>();
31
32         List<String> inputPatterns = new ArrayList<String>();
33
34 }