python音乐库_Python音乐库?

几年前我不得不这么做。我用的是pymedia。我不确定它是否还在这里,这是我在玩它的时候写的一些测试代码。不过,它大约有3岁。

编辑:示例代码播放MP3文件import pymedia

import time

demuxer = pymedia.muxer.Demuxer('mp3') #this thing decodes the multipart file i call it a demucker

f = open(r"path to \song.mp3", 'rb')

spot = f.read()

frames = demuxer.parse(spot)

print 'read it has %i frames' % len(frames)

decoder = pymedia.audio.acodec.Decoder(demuxer.streams[0]) #this thing does the actual decoding

frame = decoder.decode(spot)

print dir(frame)

#sys.exit(1)

sound = pymedia.audio.sound

print frame.bitrate, frame.sample_rate

song = sound.Output( frame.sample_rate, frame.channels, 16 ) #this thing handles playing the song

while len(spot) > 0:

try:

if frame: song.play(frame.data)

spot = f.read(512)

frame = decoder.decode(spot)

except:

pass

while song.isPlaying(): time.sleep(.05)

print 'well done'

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值