fixed source vs target
[meviz.git] / src / main / java / eu / svjatoslav / meviz / encoder / converters / Wav2mp3.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.converters;
11
12 import java.io.File;
13
14 import eu.svjatoslav.meviz.encoder.EncodingOptions;
15
16 public class Wav2mp3 implements Converter {
17
18         @Override
19         public String getCommand(final File inputFile, final File targetFile,
20                         final EncodingOptions options) {
21
22                 final String codecParams = "-b:a 192k";
23
24                 return "avconv -i \"" + inputFile.getAbsolutePath() + "\" "
25                                 + codecParams + " \"" + targetFile.getAbsolutePath() + "\"";
26         }
27
28         @Override
29         public String getSourceFileExtension() {
30                 return "wav";
31         }
32
33         @Override
34         public String getTargetFileExtension() {
35                 return "mp3";
36         }
37
38         @Override
39         public boolean isTerminalMandatory() {
40                 return false;
41         }
42
43 }