Encode audio data using the WAV file format.
tf.audio.encode_wav(
    audio: Annotated[Any, _atypes.Float32],
    sample_rate: Annotated[Any, _atypes.Int32],
    name=None
) -> Annotated[Any, _atypes.String]
This operation will generate a string suitable to be saved out to create a .wav audio file. It will be encoded in the 16-bit PCM format. It takes in float values in the range -1.0f to 1.0f, and any outside that value will be clamped to that range.
audio is a 2-D float Tensor of shape [length, channels].
sample_rate is a scalar Tensor holding the rate to use (e.g. 44100).
| Args | |
|---|---|
| audio | A Tensorof typefloat32. 2-D with shape[length, channels]. | 
| sample_rate | A Tensorof typeint32.
Scalar containing the sample frequency. | 
| name | A name for the operation (optional). | 
| Returns | |
|---|---|
| A Tensorof typestring. |