Add external MP3 decoder.
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / filter / ExternalMp3Decoder.java
1 /*
2  * Sonitus - ExternalMp3Decoder.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 static com.google.common.base.Preconditions.*;
21
22 import net.pterodactylus.sonitus.data.ConnectException;
23 import net.pterodactylus.sonitus.data.Format;
24 import net.pterodactylus.sonitus.data.Source;
25
26 /**
27  * Basic {@link ExternalFilter} implementation that verifies that the connected
28  * source is MP3-encoded and returns a PCM-encoded stream.
29  *
30  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
31  */
32 public class ExternalMp3Decoder extends ExternalFilter {
33
34         /**
35          * Creates a new external MP3 decoder.
36          *
37          * @param binary
38          *              The binary to execute
39          * @param parameters
40          *              The parameters for the binary
41          */
42         public ExternalMp3Decoder(String binary, Iterable<String> parameters) {
43                 super(binary, parameters);
44         }
45
46         @Override
47         public Format format() {
48                 return super.format().encoding("PCM");
49         }
50
51         @Override
52         public void connect(Source source) throws ConnectException {
53                 checkNotNull(source, "source must not be null");
54                 checkState(source.format().encoding().equalsIgnoreCase("MP3"), "source must be MP3-encoded");
55
56                 super.connect(source);
57         }
58
59 }