快捷方式

torchaudio.functional.phase_vocoder

torchaudio.functional.phase_vocoder(complex_specgrams: Tensor, rate: float, phase_advance: Tensor) Tensor[source]

给定一个 STFT 张量,以 rate 倍速加快时间,但不改变音调。

This feature supports the following devices: CPU, CUDA This API supports the following properties: Autograd, TorchScript
参数:
  • complex_specgrams (Tensor) – 维度为 (…, freq, num_frame) 的复数类型张量。

  • rate (float) – 加速因子

  • phase_advance (Tensor) – 每个频段的预期相位提前量。维度为 (freq, 1)

返回:

拉伸后的频谱图。结果张量与输入频谱图具有相同的数据类型,但帧数更改为 ceil(num_frame / rate)

返回类型:

Tensor

示例
>>> freq, hop_length = 1025, 512
>>> # (channel, freq, time)
>>> complex_specgrams = torch.randn(2, freq, 300, dtype=torch.cfloat)
>>> rate = 1.3 # Speed up by 30%
>>> phase_advance = torch.linspace(
>>>    0, math.pi * hop_length, freq)[..., None]
>>> x = phase_vocoder(complex_specgrams, rate, phase_advance)
>>> x.shape # with 231 == ceil(300 / 1.3)
torch.Size([2, 1025, 231])

文档

访问 PyTorch 的全面开发者文档

查看文档

教程

获取面向初学者和高级开发者的深入教程

查看教程

资源

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

查看资源