Class TeeAudioProcessor.WavFileAudioBufferSink
- java.lang.Object
-
- com.google.android.exoplayer2.audio.TeeAudioProcessor.WavFileAudioBufferSink
-
- All Implemented Interfaces:
TeeAudioProcessor.AudioBufferSink
- Enclosing class:
- TeeAudioProcessor
public static final class TeeAudioProcessor.WavFileAudioBufferSink extends Object implements TeeAudioProcessor.AudioBufferSink
A sink for audio buffers that writes output audio as .wav files with a given path prefix. When new audio data is handled after flushing the audio processor, a counter is incremented and its value is appended to the output file name.Note: if writing to external storage it's necessary to grant the
WRITE_EXTERNAL_STORAGE
permission.
-
-
Constructor Summary
Constructors Constructor Description WavFileAudioBufferSink(String outputFileNamePrefix)
Creates a new audio buffer sink that writes to .wav files with the given prefix.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
flush(int sampleRateHz, int channelCount, @com.google.android.exoplayer2.C.PcmEncoding int encoding)
Called when the audio processor is flushed with a format of subsequent input.void
handleBuffer(ByteBuffer buffer)
Called when data is written to the audio processor.
-
-
-
Constructor Detail
-
WavFileAudioBufferSink
public WavFileAudioBufferSink(String outputFileNamePrefix)
Creates a new audio buffer sink that writes to .wav files with the given prefix.- Parameters:
outputFileNamePrefix
- The prefix for output files.
-
-
Method Detail
-
flush
public void flush(int sampleRateHz, int channelCount, @com.google.android.exoplayer2.C.PcmEncoding int encoding)
Description copied from interface:TeeAudioProcessor.AudioBufferSink
Called when the audio processor is flushed with a format of subsequent input.- Specified by:
flush
in interfaceTeeAudioProcessor.AudioBufferSink
-
handleBuffer
public void handleBuffer(ByteBuffer buffer)
Description copied from interface:TeeAudioProcessor.AudioBufferSink
Called when data is written to the audio processor.- Specified by:
handleBuffer
in interfaceTeeAudioProcessor.AudioBufferSink
- Parameters:
buffer
- A read-only buffer containing input which the audio processor will handle.
-
-