如何使用python将wav文件的内容放入数组中,以便剪切所需的段并将其转换回wav格式?
如何使用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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
一般情况下,您可以使用一些库来处理媒体文件,例如。 pymedia。但是,如果您需要的只是支持简单的 WAV,您可能只需使用内置的 wave 模块。
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.