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.converters;
12 import eu.svjatoslav.meviz.encoder.EncodingOptions;
15 import java.util.List;
17 public class Ogg2Wav extends AbstractConverter {
20 public String getCommand(final File inputFile, final File targetFile,
21 final EncodingOptions options, String targetFormat) {
23 return "oggdec \"" + inputFile.getAbsolutePath() + "\" -o \""
24 + targetFile.getAbsolutePath() + "\"";
29 public List<String> getSourceFileExtensions() {
34 public List<String> getTargetFileExtensions() {
39 public boolean isTerminalMandatory() {