快捷方式

torchaudio.functional.phaser

torchaudio.functional.phaser(waveform: Tensor, sample_rate: int, gain_in: float = 0.4, gain_out: float = 0.74, delay_ms: float = 3.0, decay: float = 0.4, mod_speed: float = 0.5, sinusoidal: bool = True) Tensor[source]

对音频应用移相效果。类似于 SoX 的实现。

This feature supports the following devices: CPU, CUDA This API supports the following properties: Autograd, TorchScript
参数:
  • waveform (Tensor) – 维度为 (…, time) 的音频波形

  • sample_rate (int) – 波形的采样率,例如 44100 (Hz)

  • gain_in (float, 可选) – 提升(或衰减)时所需的输入增益,以 dB 为单位。允许的值范围为 0 到 1

  • gain_out (float, 可选) – 提升(或衰减)时所需的输出增益,以 dB 为单位。允许的值范围为 0 到 1e9

  • delay_ms (float, 可选) – 所需的延迟,以毫秒为单位。允许的值范围为 0 到 5.0

  • decay (float, 可选) – 相对于 gain-in 的所需衰减。允许的值范围为 0 到 0.99

  • mod_speed (float, 可选) – 调制速度,以 Hz 为单位。允许的值范围为 0.1 到 2

  • sinusoidal (bool, 可选) – 如果为 True,则使用正弦调制(对于多个乐器来说更可取)。如果为 False,则使用三角形调制(使单个乐器具有更锐利的移相效果)。(默认值:True

返回值:

维度为 (…, time) 的波形

返回类型:

Tensor

参考

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

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

查看教程

资源

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

查看资源