【KAWAKO】soundtoch-使用可执行文件对音频进行变调或变速
下载
从官网下载可执行文件。
单次使用
在终端中直接运行,会出现使用方法和可选参数。
变速就设置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))
本文链接:
/archives/kawako-soundtoch-shi-yong-ke-zhi-xing-wen-jian-dui-yin-pin-jin-xing-bian-diao-huo-bian-su
版权声明:
本站所有文章除特别声明外,均采用 CC BY-NC-SA 4.0 许可协议。转载请注明来自
KAWAKO!
喜欢就支持一下吧
打赏
微信
支付宝