Add name to all controlled components.
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / filter / LameMp3Decoder.java
1 /*
2  * Sonitus - LameMp3Decoder.java - Copyright © 2013 David Roden
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 package net.pterodactylus.sonitus.data.filter;
19
20 import net.pterodactylus.sonitus.data.Metadata;
21
22 import com.google.common.collect.ImmutableList;
23
24 /**
25  * {@link ExternalMp3Decoder} implementation that uses LAME to decode an MP3.
26  *
27  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
28  */
29 public class LameMp3Decoder extends ExternalMp3Decoder {
30
31         /** The location of the binary. */
32         private final String binary;
33
34         /** Whether to swap bytes in the decoded output. */
35         private boolean swapBytes;
36
37         /**
38          * Creates a new LAME MP3 decoder.
39          *
40          * @param binary
41          *              The location of the binary
42          */
43         public LameMp3Decoder(String binary) {
44                 super("LAME Decoder");
45                 this.binary = binary;
46         }
47
48         /**
49          * Sets whether to swap bytes on the decoded output.
50          *
51          * @param swapBytes
52          *              {@code true} to swap the decoded bytes, {@code false} to use platform
53          *              endianness
54          * @return This MP3 decoder
55          */
56         public LameMp3Decoder swapBytes(boolean swapBytes) {
57                 this.swapBytes = swapBytes;
58                 return this;
59         }
60
61         //
62         // EXTERNALFILTER METHODS
63         //
64
65         @Override
66         protected String binary(Metadata metadata) {
67                 return binary;
68         }
69
70         @Override
71         protected Iterable<String> parameters(Metadata metadata) {
72                 ImmutableList.Builder<String> parameters = ImmutableList.builder();
73                 parameters.add("--mp3input").add("--decode").add("-t");
74                 if (swapBytes) {
75                         parameters.add("-x");
76                 }
77                 parameters.add("-").add("-");
78                 return parameters.build();
79         }
80
81 }