Add name to all controlled components.
[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          *              The preset to use
73          */
74         public LameMp3Encoder(String binary, Preset preset) {
75                 this(binary, preset, -1);
76         }
77
78         /**
79          * Creates a new LAME MP3 encoder.
80          *
81          * @param binary
82          *              The location of the binary
83          * @param bitrate
84          *              The bitrate to encode to (in kbps)
85          */
86         public LameMp3Encoder(String binary, int bitrate) {
87                 this(binary, null, bitrate);
88         }
89
90         /**
91          * Creates a new LAME MP3 encoder.
92          *
93          * @param binary
94          *              The location of the binary
95          * @param preset
96          *              The preset to use
97          * @param bitrate
98          *              The bitrate to encode to (in kbps)
99          */
100         private LameMp3Encoder(String binary, Preset preset, int bitrate) {
101                 super("LAME Encoder");
102                 this.binary = binary;
103                 this.preset = Optional.fromNullable(preset);
104                 this.bitrate = (bitrate < 0) ? Optional.<Integer>absent() : Optional.<Integer>of(bitrate);
105         }
106
107         /**
108          * Sets whether to swap bytes on the input to encode
109          *
110          * @param swapBytes
111          *              {@code true} to swap the input bytes, {@code false} to use platform
112          *              endianness
113          * @return This MP3 encoder
114          */
115         public LameMp3Encoder swapBytes(boolean swapBytes) {
116                 this.swapBytes = swapBytes;
117                 return this;
118         }
119
120         /**
121          * Sets whether to use highest quality encoding.
122          *
123          * @param hq
124          *              {@code true} to use highest quality encoding, {@code false} otherwise
125          * @return This MP3 encoder
126          */
127         public LameMp3Encoder hq(boolean hq) {
128                 this.hq = hq;
129                 return this;
130         }
131
132         //
133         // EXTERNALFILTER METHODS
134         //
135
136         @Override
137         protected String binary(Metadata metadata) {
138                 return binary;
139         }
140
141         @Override
142         protected Iterable<String> parameters(Metadata metadata) {
143                 ImmutableList.Builder<String> parameters = ImmutableList.builder();
144                 parameters.add("-r");
145                 parameters.add("-s").add(String.valueOf(metadata.frequency() / 1000.0));
146                 if (swapBytes) {
147                         parameters.add("-x");
148                 }
149                 parameters.add("--preset");
150                 if (preset.isPresent()) {
151                         parameters.add(preset.get().name().toLowerCase());
152                 }
153                 if (bitrate.isPresent()) {
154                         if (isSignificant(bitrate.get())) {
155                                 parameters.add("cbr");
156                         }
157                         parameters.add(String.valueOf(bitrate.get()));
158                 }
159                 parameters.add("-p");
160                 if (hq) {
161                         parameters.add("-q").add("0");
162                 }
163                 parameters.add("-").add("-");
164                 return parameters.build();
165         }
166
167         //
168         // STATIC METHODS
169         //
170
171         /**
172          * Returns whether the given bitrate is one of the significant bitrates of
173          * MP3.
174          *
175          * @param bitrate
176          *              The bitrate to check (in kbps)
177          * @return {@code true} if the given bitrate is one of the significant MP3
178          *         bitrates, {@code false} otherwise
179          */
180         private static boolean isSignificant(int bitrate) {
181                 return Arrays.asList(80, 96, 112, 128, 160, 192, 224, 256, 320).contains(bitrate);
182         }
183
184 }