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