如何使用python将wav文件的内容放入数组中,以便剪切所需的段并将其转换回wav格式?

发布于 2024-09-02 22:47:16 字数 315 浏览 10 评论 0原文

如何使用python将wav文件的内容放入数组中,以便剪切所需的段并将其转换回wav格式? 我的问题类似于“ROMAN”问题,我之前在这个网站的帖子中看到过。

基本上,我想将不同 wav 文件的各个部分合并到一个 wav 文件中? 是否有其他方法可以将内容放入数组中并剪切部分并组合并再次转换回原来的值?请建议...

编辑:

我更喜欢将波形文件的内容解压到数组中,并通过从 wav 文件中剪切所需的声音片段进行编辑,因为我正在从事语音处理,并且猜测这种方式很容易增强稍后的声音质量...

有人可以建议一种方法吗? 请帮助..

提前致谢。

How to get the contents of the wav file into array so as to cut the required segment and convert it back to wav format using python??
My prob is similar to "ROMANs" prob,i hav seen earlier in the post at this site..

Basically,i want to combine parts of different wav file into one wav file??
if there is ne other apporach thn takin the contents into an array and cuting part and combining and again converting bac? please suggest...

edited:

I prefer unpacking the contents of the wave file into an array and editing by cutting the required segment of sound from the wav file,as i am working on speech processing,and guess this way would be easy to enchance the quality of sound later...

can ne one suggest a way for this??
Plz help..

Thanks in advance.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

小帐篷 2024-09-09 22:47:16

一般情况下,您可以使用一些库来处理媒体文件,例如。 pymedia。但是,如果您需要的只是支持简单的 WAV,您可能只需使用内置的 wave 模块。

import wave
win= wave.open('sample.wav', 'rb')
wout= wave.open('segment.wav', 'wb')

t0, t1= 1.0, 2.0 # cut audio between one and two seconds
s0, s1= int(t0*win.getframerate()), int(t1*win.getframerate())
win.readframes(s0) # discard
frames= win.readframes(s1-s0)

wout.setparams(win.getparams())
wout.writeframes(frames)

win.close()
wout.close()

There are a few libraries you can use for handling media files in general, eg. pymedia. However if all you need is support for simple WAVs, you could probably just use the built-in wave module.

import wave
win= wave.open('sample.wav', 'rb')
wout= wave.open('segment.wav', 'wb')

t0, t1= 1.0, 2.0 # cut audio between one and two seconds
s0, s1= int(t0*win.getframerate()), int(t1*win.getframerate())
win.readframes(s0) # discard
frames= win.readframes(s1-s0)

wout.setparams(win.getparams())
wout.writeframes(frames)

win.close()
wout.close()
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文