pygame Mixer 将音频保存到磁盘?

问题描述 投票:0回答:3

使用 pygame 混合器,我打开一个音频文件并对其进行操作。我找不到将“声音对象”保存到磁盘上的本地文件的方法。

sound_file = "output.mp3"
sound = pygame.mixer.Sound(sound_file)

有什么办法可以做到这一点吗?我一直在研究 pygame Mixer 文档,但找不到与此相关的任何内容。

python audio python-2.7 save pygame
3个回答
4
投票

您的问题已近两年了,但以防万一人们仍在寻找答案:您可以使用

wave
模块(本机Python)保存PyGame Sound实例。

# create a sound from NumPy array of file
snd = pygame.mixer.Sound(my_sound_source)

# open new wave file
sfile = wave.open('pure_tone.wav', 'w')

# set the parameters
sfile.setframerate(SAMPLINGFREQ)
sfile.setnchannels(NCHANNELS)
sfile.setsampwidth(2)

# write raw PyGame sound buffer to wave file
sfile.writeframesraw(snd.get_buffer().raw)

# close file
sfile.close()

GitHub 上的更多信息和示例:https://github.com/esdalmaijer/Save_PyGame_Sound


0
投票

我从未尝试过这个,所以我只是猜测它可能有效。

pygame.mixer.Sound
对象有一个名为
get_raw()
的函数,它在 Python 3.x 中返回字节数组,在 Python 2.x 中返回字符串。 我认为您也许可以使用该字节数组来保存您的声音。

http://www.pygame.org/docs/ref/mixer.html#pygame.mixer.Sound.get_raw

我希望它看起来像这样:

sound = pygame.mixer.Sound(sound_file)
... # your code that manipulates the sound
sound_raw = sound.get_raw()
file = open("editedsound.mp3", "w")
file.write(sound_raw)
file.close()

0
投票

这不是一个答案。这是一条评论,因为我上面写的评论不清楚,因为我不知道如何使回车有效。

我的评论是:上述解决方案不起作用。

这里是 ipython 测试的摘录。

In [23]: sound = pygame.mixer.Sound('FishPolka.mid')

In [24]: sr = sound.get_raw()
---------------------------------------------------------------------------
AttributeError                            Traceback (most recent call last)

E:\Documents and Settings\Me\Desktop\<ipython console> in <module>()

AttributeError: 'Sound' object has no attribute 'get_raw'

In [25]: sound.g
sound.get_buffer       sound.get_length       sound.get_num_channels sound.get_volume
© www.soinside.com 2019 - 2024. All rights reserved.