gpt4 book ai didi

python - 如何在wav文件前添加静音

转载 作者:太空狗 更新时间:2023-10-30 00:13:56 25 4
gpt4 key购买 nike

我是 python 新手。我正在进行一项使用音频 (WAV) 文件的实验。我有 100 多个长度可变的音频文件。其中最长的是 10 秒。但是对于我的实验,我需要所有文件都具有相同的长度,即 10 秒。所以我想在这些长度小于 10 秒的文件前面添加几秒钟的沉默。

那么如何使用 python 将静音添加到 WAV 文件的开头?具有可变长度的沉默

最佳答案

我做了一个小脚本,它允许您在信号前加上静音,以获得以秒为单位的目标持续时间。它使用 scipy 函数读取 wav 文件。

#!/usr/bin/env python

from __future__ import print_function, division
import scipy.io.wavfile as wavf
import numpy as np
from sys import argv

def pad_audio(data, fs, T):
# Calculate target number of samples
N_tar = int(fs * T)
# Calculate number of zero samples to append
shape = data.shape
# Create the target shape
N_pad = N_tar - shape[0]
print("Padding with %s seconds of silence" % str(N_pad/fs) )
shape = (N_pad,) + shape[1:]
# Stack only if there is something to append
if shape[0] > 0:
if len(shape) > 1:
return np.vstack((np.zeros(shape),
data))
else:
return np.hstack((np.zeros(shape),
data))
else:
return data

if __name__ == "__main__":
if len(argv) != 4:
print("Wrong arguments.")
print("Use: %s in.wav out.wav target_time_s" % argv[0])
else:
in_wav = argv[1]
out_wav = argv[2]
T = float(argv[3])
# Read the wav file
fs, in_data = wavf.read(in_wav)
# Prepend with zeros
out_data = pad_audio(in_data, fs, T)
# Save the output file
wavf.write(out_wav, fs, out_data)

关于python - 如何在wav文件前添加静音,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32468349/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com