快捷方式

MuLaw编码

class torchaudio.transforms.MuLawEncoding(quantization_channels: int = 256)[source]

基于 μ律压缩编码信号。

This feature supports the following devices: CPU, CUDA This API supports the following properties: TorchScript

更多信息请参见 维基百科条目

此算法假设信号已缩放到 -1 到 1 之间,并返回使用 0 到 quantization_channels - 1 之间的值编码的信号

参数:

quantization_channels (int, 可选) – 通道数。 (默认值:256)

示例
>>> waveform, sample_rate = torchaudio.load("test.wav", normalize=True)
>>> transform = torchaudio.transforms.MuLawEncoding(quantization_channels=512)
>>> mulawtrans = transform(waveform)
forward(x: Tensor) Tensor[source]
参数:

x (Tensor) – 要编码的信号。

返回值:

已编码的信号。

返回类型:

Tensor

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取适合初学者和高级开发人员的深入教程

查看教程

资源

查找开发资源并获得问题的解答

查看资源