forked from auracaster/pyalsaaudio
git-svn-id: svn://svn.code.sf.net/p/pyalsaaudio/code/trunk@37 ec2f30ec-7544-0410-870e-f70ca00c83f0
67 lines
1.6 KiB
Python
Executable File
67 lines
1.6 KiB
Python
Executable File
#!/usr/bin/env python
|
|
|
|
# Simple test script that plays (some) wav files
|
|
|
|
|
|
# Footnote: I'd normally use print instead of sys.std(out|err).write,
|
|
# but this version runs on python 2 and python 3 without conversion
|
|
|
|
import sys
|
|
import wave
|
|
import getopt
|
|
import alsaaudio
|
|
|
|
def play(device, f):
|
|
|
|
|
|
sys.stdout.write('%d channels, %d sampling rate\n' % (f.getnchannels(),
|
|
f.getframerate()))
|
|
# Set attributes
|
|
device.setchannels(f.getnchannels())
|
|
device.setrate(f.getframerate())
|
|
|
|
# 8bit is unsigned in wav files
|
|
if f.getsampwidth() == 1:
|
|
device.setformat(alsaaudio.PCM_FORMAT_U8)
|
|
# Otherwise we assume signed data, little endian
|
|
elif f.getsampwidth() == 2:
|
|
device.setformat(alsaaudio.PCM_FORMAT_S16_LE)
|
|
elif f.getsampwidth() == 3:
|
|
device.setformat(alsaaudio.PCM_FORMAT_S24_LE)
|
|
elif f.getsampwidth() == 4:
|
|
device.setformat(alsaaudio.PCM_FORMAT_S32_LE)
|
|
else:
|
|
raise ValueError('Unsupported format')
|
|
|
|
device.setperiodsize(320)
|
|
|
|
data = f.readframes(320)
|
|
while data:
|
|
# Read data from stdin
|
|
device.write(data)
|
|
data = f.readframes(320)
|
|
|
|
|
|
def usage():
|
|
sys.stderr.write('usage: playwav.py [-c <card>] <file>\n')
|
|
sys.exit(2)
|
|
|
|
if __name__ == '__main__':
|
|
|
|
card = 'default'
|
|
|
|
opts, args = getopt.getopt(sys.argv[1:], 'c:')
|
|
for o, a in opts:
|
|
if o == '-c':
|
|
card = a
|
|
|
|
if not args:
|
|
usage()
|
|
|
|
f = wave.open(args[0], 'rb')
|
|
device = alsaaudio.PCM(card=card)
|
|
|
|
play(device, f)
|
|
|
|
f.close()
|