2 * Meviz - Various tools collection to work with multimedia.
3 * Copyright (C) 2012, Svjatoslav Agejenko, svjatoslav@svjatoslav.eu
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.
10 package eu.svjatoslav.meviz.encoder;
13 import java.util.ArrayList;
14 import java.util.List;
16 public class EncodingOptions {
18 public Bitrate.bitrate videoBitrate = Bitrate.bitrate.MEDIUM;
20 // public Bitrate audioBitrate;
22 public boolean deinterlace = false;
24 public boolean recursive;
26 public boolean terminal;
28 public boolean testOnly;
30 public File workingDirectory = new File(System.getProperty("user.dir"));
32 List<String> outputFormats = new ArrayList<String>();
34 List<String> inputPatterns = new ArrayList<String>();