Move event and metadata handling into abstract base class.
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / filter / LameMp3Encoder.java
1 /*
2  * Sonitus - LameMp3Encoder.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 java.util.Arrays;
21
22 import net.pterodactylus.sonitus.data.Metadata;
23
24 import com.google.common.base.Optional;
25 import com.google.common.collect.ImmutableList;
26
27 /**
28  * {@link ExternalMp3Encoder} implementation that uses LAME to encode MP3s.
29  *
30  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
31  */
32 public class LameMp3Encoder extends ExternalMp3Encoder {
33
34         /** Preset for LAME. */
35         public enum Preset {
36
37                 /** “medium” preset. */
38                 MEDIUM,
39
40                 /** “standard” preset. */
41                 STANDARD,
42
43                 /** “extreme” preset. */
44                 EXTREME,
45
46                 /** “insane” preset. */
47                 INSANE
48
49         }
50
51         /** The location of the binary. */
52         private final String binary;
53
54         /** Whether to swap bytes in the input. */
55         private boolean swapBytes;
56
57         /** The preset to use. */
58         private final Optional<Preset> preset;
59
60         /** The bitrate to encode to. */
61         private final Optional<Integer> bitrate;
62
63         /** Whether to use highest quality encoding. */
64         private boolean hq = false;
65
66         /**
67          * Creates a new LAME MP3 encoder.
68          *
69          * @param binary
70          *              The location of the binary
71          * @param preset
72          */
73         public LameMp3Encoder(String binary, Preset preset) {
74                 this(binary, preset, -1);
75         }
76
77         /**
78          * Creates a new LAME MP3 encoder.
79          *
80          * @param binary
81          *              The location of the binary
82          * @param bitrate
83          */
84         public LameMp3Encoder(String binary, int bitrate) {
85                 this(binary, null, bitrate);
86         }
87
88         /**
89          * Creates a new LAME MP3 encoder.
90          *
91          * @param binary
92          *              The location of the binary
93          * @param preset
94          *              The preset to use
95          * @param bitrate
96          */
97         private LameMp3Encoder(String binary, Preset preset, int bitrate) {
98                 super("LAME Encoder");
99                 this.binary = binary;
100                 this.preset = Optional.fromNullable(preset);
101                 this.bitrate = (bitrate < 0) ? Optional.<Integer>absent() : Optional.<Integer>of(bitrate);
102         }
103
104         /**
105          * Sets whether to swap bytes on the input to encode
106          *
107          * @param swapBytes
108          *              {@code true} to swap the input bytes, {@code false} to use platform
109          *              endianness
110          * @return This MP3 encoder
111          */
112         public LameMp3Encoder swapBytes(boolean swapBytes) {
113                 this.swapBytes = swapBytes;
114                 return this;
115         }
116
117         /**
118          * Sets whether to use highest quality encoding.
119          *
120          * @param hq
121          *              {@code true} to use highest quality encoding, {@code false} otherwise
122          * @return This MP3 encoder
123          */
124         public LameMp3Encoder hq(boolean hq) {
125                 this.hq = hq;
126                 return this;
127         }
128
129         //
130         // EXTERNALFILTER METHODS
131         //
132
133         @Override
134         protected String binary(Metadata metadata) {
135                 return binary;
136         }
137
138         @Override
139         protected Iterable<String> parameters(Metadata metadata) {
140                 ImmutableList.Builder<String> parameters = ImmutableList.builder();
141                 parameters.add("-r");
142                 parameters.add("-s").add(String.valueOf(metadata.frequency() / 1000.0));
143                 if (swapBytes) {
144                         parameters.add("-x");
145                 }
146                 parameters.add("--preset");
147                 if (preset.isPresent()) {
148                         parameters.add(preset.get().name().toLowerCase());
149                 }
150                 if (bitrate.isPresent()) {
151                         if (isSignificant(bitrate.get())) {
152                                 parameters.add("cbr");
153                         }
154                         parameters.add(String.valueOf(bitrate.get()));
155                 }
156                 parameters.add("-p");
157                 if (hq) {
158                         parameters.add("-q").add("0");
159                 }
160                 parameters.add("-").add("-");
161                 return parameters.build();
162         }
163
164         //
165         // STATIC METHODS
166         //
167
168         /**
169          * Returns whether the given bitrate is one of the significant bitrates of
170          * MP3.
171          *
172          * @param bitrate
173          *              The bitrate to check (in kbps)
174          * @return {@code true} if the given bitrate is one of the significant MP3
175          *         bitrates, {@code false} otherwise
176          */
177         private static boolean isSignificant(int bitrate) {
178                 return Arrays.asList(80, 96, 112, 128, 160, 192, 224, 256, 320).contains(bitrate);
179         }
180
181 }