Hand in changed metadata to superclass.
[sonitus.git] / src / main / java / net / pterodactylus / sonitus / data / filter / SoxResampleFilter.java
1 /*
2  * Sonitus - ResampleFilter.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.checkArgument;
21 import static com.google.common.base.Preconditions.checkNotNull;
22
23 import java.io.IOException;
24
25 import net.pterodactylus.sonitus.data.Metadata;
26
27 import com.google.common.collect.ImmutableList;
28
29 /**
30  * {@link net.pterodactylus.sonitus.data.Filter} implementation that uses {@code
31  * sox} to resample a PCM-encoded source.
32  *
33  * @author <a href="mailto:bombe@pterodactylus.net">David ‘Bombe’ Roden</a>
34  */
35 public class SoxResampleFilter extends ExternalFilter {
36
37         /** The location of the binary. */
38         private final String binary;
39
40         /** The final sampling rate. */
41         private final int rate;
42
43         /**
44          * Creates a new resample filter.
45          *
46          * @param binary
47          *              The location of the binary
48          * @param rate
49          */
50         public SoxResampleFilter(String binary, int rate) {
51                 super(String.format("Resample to %s kHz", rate / 1000.0));
52                 this.binary = binary;
53                 this.rate = rate;
54         }
55
56         //
57         // FILTER METHODS
58         //
59
60         @Override
61         public void open(Metadata metadata) throws IOException {
62                 checkNotNull(metadata, "metadata must not be null");
63                 checkArgument(metadata.encoding().equalsIgnoreCase("PCM"), "source must be PCM-encoded");
64
65                 super.open(metadata.frequency(rate));
66         }
67
68         //
69         // EXTERNALFILTER METHODS
70         //
71
72         @Override
73         protected String binary(Metadata metadata) {
74                 return binary;
75         }
76
77         @Override
78         protected Iterable<String> parameters(Metadata metadata) {
79                 ImmutableList.Builder<String> parameters = ImmutableList.builder();
80                 /* the input file. */
81                 parameters.add("--bits").add("16");
82                 parameters.add("--channels").add(String.valueOf(metadata.channels()));
83                 parameters.add("--encoding").add("signed-integer");
84                 parameters.add("--rate").add(String.valueOf(metadata.frequency()));
85                 parameters.add("--type").add("raw");
86                 parameters.add("--endian").add("little");
87                 parameters.add("-");
88                 /* the output file. */
89                 parameters.add("--bits").add("16");
90                 parameters.add("--channels").add(String.valueOf(metadata.channels()));
91                 parameters.add("--encoding").add("signed-integer");
92                 parameters.add("--type").add("raw");
93                 parameters.add("--endian").add("little");
94                 parameters.add("-");
95                 /* rate effect. */
96                 parameters.add("rate").add("-h").add(String.valueOf(rate));
97                 return parameters.build();
98         }
99
100 }