added webm support
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / converters / Flac.java
index f7c6785..bf239cc 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Meviz - Various tools collection to work with multimedia.
  * Copyright (C) 2012, 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.
@@ -18,7 +18,7 @@ public class Flac extends AbstractConverter {
 
        @Override
        public String getCommand(final File inputFile, final File targetFile,
-                       final EncodingOptions options) {
+                       final EncodingOptions options, String targetFormat) {
 
                return "flac -8 \"" + inputFile.getAbsolutePath() + "\" -o \""
                                + targetFile.getAbsolutePath() + "\"";