View source on GitHub |
Resample audio.
tfio.audio.resample(
input, rate_in, rate_out, name=None
)
Used in the notebooks
Used in the tutorials |
---|
Args | |
---|---|
input
|
A 1-D ([samples] ) or 2-D ([samples, channels] ) or 3-D
([batch, samples, channels] ) Tensor of type
int16 or float . Audio input.
|
rate_in
|
The rate of the audio input. |
rate_out
|
The rate of the audio output. |
name
|
A name for the operation (optional). |
Returns | |
---|---|
output
|
Resampled audio. |