17e097384ece849b7805f392f19350756ea6c422
[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 import com.google.common.eventbus.EventBus;
24
25 /**
26  * {@link ExternalMp3Decoder} implementation that uses LAME to decode an MP3.
27  *
28  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
29  */
30 public class LameMp3Decoder extends ExternalMp3Decoder {
31
32         /** The location of the binary. */
33         private final String binary;
34
35         /** Whether to swap bytes in the decoded output. */
36         private boolean swapBytes;
37
38         /**
39          * Creates a new LAME MP3 decoder.
40          *
41          * @param eventBus
42          *              The event bus
43          * @param binary
44          *              The location of the binary
45          */
46         public LameMp3Decoder(EventBus eventBus, String binary) {
47                 super(eventBus, "LAME Decoder");
48                 this.binary = binary;
49         }
50
51         /**
52          * Sets whether to swap bytes on the decoded output.
53          *
54          * @param swapBytes
55          *              {@code true} to swap the decoded bytes, {@code false} to use platform
56          *              endianness
57          * @return This MP3 decoder
58          */
59         public LameMp3Decoder swapBytes(boolean swapBytes) {
60                 this.swapBytes = swapBytes;
61                 return this;
62         }
63
64         //
65         // EXTERNALFILTER METHODS
66         //
67
68         @Override
69         protected String binary(Metadata metadata) {
70                 return binary;
71         }
72
73         @Override
74         protected Iterable<String> parameters(Metadata metadata) {
75                 ImmutableList.Builder<String> parameters = ImmutableList.builder();
76                 parameters.add("--mp3input").add("--decode").add("-t");
77                 if (swapBytes) {
78                         parameters.add("-x");
79                 }
80                 parameters.add("-").add("-");
81                 return parameters.build();
82         }
83
84 }