- java.lang.Object
-
- org.refcodes.audio.AbstractWavSampleWriter<SoundSample,WavSoundSampleWriter>
-
- org.refcodes.audio.WavSoundSampleWriter
-
- All Implemented Interfaces:
AutoCloseable
,BitsPerSampleAccessor
,BitsPerSampleAccessor.BitsPerSampleBuilder<WavSoundSampleWriter>
,BitsPerSampleAccessor.BitsPerSampleMutator
,BitsPerSampleAccessor.BitsPerSampleProperty
,SampleWriter<SoundSample,WavSoundSampleWriter>
,SamplingRateAccessor
,SamplingRateAccessor.SamplingRateBuilder<WavSoundSampleWriter>
,SamplingRateAccessor.SamplingRateMutator
,SamplingRateAccessor.SamplingRateProperty
,SoundSampleWriter<WavSoundSampleWriter>
,WavSampleWriter<SoundSample,WavSoundSampleWriter>
,org.refcodes.io.RowWriter<SoundSample>
public class WavSoundSampleWriter extends AbstractWavSampleWriter<SoundSample,WavSoundSampleWriter> implements SoundSampleWriter<WavSoundSampleWriter>
TheWavSoundSampleWriter
provides means to write sound samples to a WAV file. Information on the WAV file format has been taken from the following article: "https://web.archive.org/web/20120113025807/http://technology.niagarac.on.ca:80/courses/ctec1631/WavFileFormat.html".
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.refcodes.audio.BitsPerSampleAccessor
BitsPerSampleAccessor.BitsPerSampleBuilder<B extends BitsPerSampleAccessor.BitsPerSampleBuilder<B>>, BitsPerSampleAccessor.BitsPerSampleMutator, BitsPerSampleAccessor.BitsPerSampleProperty
-
Nested classes/interfaces inherited from interface org.refcodes.audio.SamplingRateAccessor
SamplingRateAccessor.SamplingRateBuilder<B extends SamplingRateAccessor.SamplingRateBuilder<B>>, SamplingRateAccessor.SamplingRateMutator, SamplingRateAccessor.SamplingRateProperty
-
-
Field Summary
-
Fields inherited from class org.refcodes.audio.AbstractWavSampleWriter
_bitsPerSample, _file, _outputStream, DATA, FORMAT, MAX_16_BIT, MAX_8_BIT, RIFF, WAVE
-
-
Constructor Summary
Constructors Constructor Description WavSoundSampleWriter(File aFile)
Constructs theWavSoundSampleWriter
for writing sound samples to a WAV file or stream.WavSoundSampleWriter(OutputStream aOutputStream)
Constructs theWavSoundSampleWriter
for writing sound samples to a WAV file or stream.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getSamplingRate()
Retrieves the sampling rate from the sampling rate property.void
setSamplingRate(int aSamplingRate)
Sets the sampling rate for the sampling rate property.WavSoundSampleWriter
withBitsPerSample(BitsPerSample aBitsPerSample)
Sets the bits/sample per channel for the bits/sample per channel property.WavSoundSampleWriter
withSamplingRate(int aSamplingRate)
Sets the sampling rate for the sampling rate property.void
writeNext(double... aSampleData)
Writes the next samples, one sample for each channel.void
writeNext(SoundSample aSample)
Writes the next samples, one sample for each channel.-
Methods inherited from class org.refcodes.audio.AbstractWavSampleWriter
close, getBitsPerSample, setBitsPerSample, toWavSample, writeHeader
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.refcodes.audio.BitsPerSampleAccessor.BitsPerSampleProperty
letBitsPerSample
-
Methods inherited from interface org.refcodes.audio.SampleWriter
close
-
Methods inherited from interface org.refcodes.audio.SamplingRateAccessor.SamplingRateProperty
letSamplingRate
-
-
-
-
Constructor Detail
-
WavSoundSampleWriter
public WavSoundSampleWriter(File aFile) throws FileNotFoundException
Constructs theWavSoundSampleWriter
for writing sound samples to a WAV file or stream.- Parameters:
aFile
- TheFile
where to write the CSV records to.- Throws:
FileNotFoundException
- If the given file object does not denote an existing, writable regular file and a new regular file of that name cannot be created, or if some other error occurs while opening or creating the file.
-
WavSoundSampleWriter
public WavSoundSampleWriter(OutputStream aOutputStream)
Constructs theWavSoundSampleWriter
for writing sound samples to a WAV file or stream.- Parameters:
aOutputStream
- TheOutputStream
where to write the CSV records to.
-
-
Method Detail
-
withBitsPerSample
public WavSoundSampleWriter withBitsPerSample(BitsPerSample aBitsPerSample)
Sets the bits/sample per channel for the bits/sample per channel property.- Specified by:
withBitsPerSample
in interfaceBitsPerSampleAccessor.BitsPerSampleBuilder<WavSoundSampleWriter>
- Parameters:
aBitsPerSample
- The bits/sample per channel to be stored by the sampling rate property.- Returns:
- The builder for applying multiple build operations.
-
writeNext
public void writeNext(double... aSampleData) throws IOException
Writes the next samples, one sample for each channel. Provide one sample for mono audio, two samples for stereo audio and so on. In case you provide more or less samples than channels being supported by the writer, then it is up to the writer whether to duplicate the samples or calculate an average or the like.- Specified by:
writeNext
in interfaceSoundSampleWriter<WavSoundSampleWriter>
- Parameters:
aSampleData
- The samples, one for each channel.- Throws:
IOException
- thrown in case writing the sample caused an I/O related problem.
-
writeNext
public void writeNext(SoundSample aSample) throws IOException
Writes the next samples, one sample for each channel. Provide one sample for mono audio, two samples for stereo audio and so on. In case you provide more or less samples than channels being supported by the writer, then it is up to the writer whether to duplicate the samples or calculate an average or the like.- Specified by:
writeNext
in interfaceorg.refcodes.io.RowWriter<SoundSample>
- Specified by:
writeNext
in interfaceSampleWriter<SoundSample,WavSoundSampleWriter>
- Specified by:
writeNext
in interfaceSoundSampleWriter<WavSoundSampleWriter>
- Parameters:
aSample
- The samples, one for each channel.- Throws:
IOException
- thrown in case writing the sample caused an I/O related problem.
-
getSamplingRate
public int getSamplingRate()
Retrieves the sampling rate from the sampling rate property.- Specified by:
getSamplingRate
in interfaceSamplingRateAccessor
- Returns:
- The sampling rate stored by the sampling rate property.
-
setSamplingRate
public void setSamplingRate(int aSamplingRate)
Sets the sampling rate for the sampling rate property.- Specified by:
setSamplingRate
in interfaceSamplingRateAccessor.SamplingRateMutator
- Parameters:
aSamplingRate
- The sampling rate to be stored by the sampling rate property.
-
withSamplingRate
public WavSoundSampleWriter withSamplingRate(int aSamplingRate)
Sets the sampling rate for the sampling rate property.- Specified by:
withSamplingRate
in interfaceSamplingRateAccessor.SamplingRateBuilder<WavSoundSampleWriter>
- Parameters:
aSamplingRate
- The sampling rate to be stored by the sampling rate property.- Returns:
- The builder for applying multiple build operations.
-
-