下载

官网下载可执行文件。

单次使用

在终端中直接运行,会出现使用方法和可选参数。

变速就设置tempo,变调就设置pitch,都变就都设置。变速的效果好像比audiotsm的效果好一些。

使用python脚本批量处理

为了方便处理,可以把soundstretch.exe添加进环境变量。

import os
 
#变速
def time_stretch(input_file, output_file, tempo):
    os.system("soundstretch %s %s -tempo=%d" % (input_file, output_file, tempo))
 
#变调
def pitch_shifting(input_file, output_file, n_steps):
    os.system("soundstretch %s %s -pitch=%d" % (input_file, output_file, n_steps))
文章作者: KAWAKO
版权声明: 本站所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自 KAWAKO
python 音频
喜欢就支持一下吧
打赏
微信 微信
支付宝 支付宝