Skip to content

Commit df889b9

Browse files
Don't use setrate etc. in samples.
1 parent 2a21bf6 commit df889b9

File tree

5 files changed

+78
-96
lines changed

5 files changed

+78
-96
lines changed

isine.py

+1-4
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,7 @@ class SinePlayer(Thread):
5656
def __init__(self, frequency = 440.0):
5757
Thread.__init__(self)
5858
self.setDaemon(True)
59-
self.device = alsaaudio.PCM()
60-
self.device.setchannels(channels)
61-
self.device.setformat(format)
62-
self.device.setrate(sampling_rate)
59+
self.device = alsaaudio.PCM(channels=channels, format=format, rate=sampling_rate)
6360
self.queue = Queue()
6461
self.change(frequency)
6562

playbacktest.py

+4-10
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
2+
# -*- mode: python; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
23

34
## playbacktest.py
45
##
@@ -38,18 +39,11 @@ def usage():
3839

3940
f = open(args[0], 'rb')
4041

41-
# Open the device in playback mode.
42-
out = alsaaudio.PCM(alsaaudio.PCM_PLAYBACK, device=device)
43-
44-
# Set attributes: Mono, 44100 Hz, 16 bit little endian frames
45-
out.setchannels(1)
46-
out.setrate(44100)
47-
out.setformat(alsaaudio.PCM_FORMAT_S16_LE)
48-
42+
# Open the device in playback mode in Mono, 44100 Hz, 16 bit little endian frames
4943
# The period size controls the internal number of frames per period.
5044
# The significance of this parameter is documented in the ALSA api.
51-
out.setperiodsize(160)
5245

46+
out = alsaaudio.PCM(alsaaudio.PCM_PLAYBACK, channels=1, rate=44100, format=alsaaudio.PCM_FORMAT_S16_LE, periodsize=160, device=device)
5347
# Read data from stdin
5448
data = f.read(320)
5549
while data:

playwav.py

+39-43
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
2+
# -*- mode: python; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
23

34
# Simple test script that plays (some) wav files
45

@@ -9,57 +10,52 @@
910
import getopt
1011
import alsaaudio
1112

12-
def play(device, f):
13+
def play(device, f):
1314

14-
print('%d channels, %d sampling rate\n' % (f.getnchannels(),
15-
f.getframerate()))
16-
# Set attributes
17-
device.setchannels(f.getnchannels())
18-
device.setrate(f.getframerate())
15+
format = None
1916

20-
# 8bit is unsigned in wav files
21-
if f.getsampwidth() == 1:
22-
device.setformat(alsaaudio.PCM_FORMAT_U8)
23-
# Otherwise we assume signed data, little endian
24-
elif f.getsampwidth() == 2:
25-
device.setformat(alsaaudio.PCM_FORMAT_S16_LE)
26-
elif f.getsampwidth() == 3:
27-
device.setformat(alsaaudio.PCM_FORMAT_S24_3LE)
28-
elif f.getsampwidth() == 4:
29-
device.setformat(alsaaudio.PCM_FORMAT_S32_LE)
30-
else:
31-
raise ValueError('Unsupported format')
17+
# 8bit is unsigned in wav files
18+
if f.getsampwidth() == 1:
19+
format = alsaaudio.PCM_FORMAT_U8
20+
# Otherwise we assume signed data, little endian
21+
elif f.getsampwidth() == 2:
22+
format = alsaaudio.PCM_FORMAT_S16_LE
23+
elif f.getsampwidth() == 3:
24+
format = alsaaudio.PCM_FORMAT_S24_3LE
25+
elif f.getsampwidth() == 4:
26+
format = alsaaudio.PCM_FORMAT_S32_LE
27+
else:
28+
raise ValueError('Unsupported format')
3229

33-
periodsize = f.getframerate() // 8
30+
print('%d channels, %d sampling rate\n' % (f.getnchannels(),
31+
f.getframerate()))
3432

35-
device.setperiodsize(periodsize)
36-
37-
data = f.readframes(periodsize)
38-
while data:
39-
# Read data from stdin
40-
device.write(data)
41-
data = f.readframes(periodsize)
33+
periodsize = f.getframerate() // 8
34+
35+
device = alsaaudio.PCM(channels=f.getnchannels(), rate=f.getframerate(), format=format, periodsize=periodsize, device=device)
36+
37+
data = f.readframes(periodsize)
38+
while data:
39+
# Read data from stdin
40+
device.write(data)
41+
data = f.readframes(periodsize)
4242

4343

4444
def usage():
45-
print('usage: playwav.py [-d <device>] <file>', file=sys.stderr)
46-
sys.exit(2)
45+
print('usage: playwav.py [-d <device>] <file>', file=sys.stderr)
46+
sys.exit(2)
4747

4848
if __name__ == '__main__':
4949

50-
device = 'default'
51-
52-
opts, args = getopt.getopt(sys.argv[1:], 'd:')
53-
for o, a in opts:
54-
if o == '-d':
55-
device = a
56-
57-
if not args:
58-
usage()
59-
60-
f = wave.open(args[0], 'rb')
61-
device = alsaaudio.PCM(device=device)
50+
device = 'default'
6251

63-
play(device, f)
52+
opts, args = getopt.getopt(sys.argv[1:], 'd:')
53+
for o, a in opts:
54+
if o == '-d':
55+
device = a
6456

65-
f.close()
57+
if not args:
58+
usage()
59+
60+
with wave.open(args[0], 'rb') as f:
61+
play(device, f)

recordtest.py

+33-38
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
#!/usr/bin/env python
1+
#!/usr/bin/env python3
2+
# -*- mode: python; indent-tabs-mode: t; c-basic-offset: 4; tab-width: 4 -*-
23

34
## recordtest.py
45
##
@@ -22,48 +23,42 @@
2223
import alsaaudio
2324

2425
def usage():
25-
print('usage: recordtest.py [-d <device>] <file>', file=sys.stderr)
26-
sys.exit(2)
26+
print('usage: recordtest.py [-d <device>] <file>', file=sys.stderr)
27+
sys.exit(2)
2728

2829
if __name__ == '__main__':
2930

30-
device = 'default'
31-
32-
opts, args = getopt.getopt(sys.argv[1:], 'd:')
33-
for o, a in opts:
34-
if o == '-d':
35-
device = a
31+
device = 'default'
3632

37-
if not args:
38-
usage()
33+
opts, args = getopt.getopt(sys.argv[1:], 'd:')
34+
for o, a in opts:
35+
if o == '-d':
36+
device = a
3937

40-
f = open(args[0], 'wb')
38+
if not args:
39+
usage()
4140

42-
# Open the device in nonblocking capture mode. The last argument could
43-
# just as well have been zero for blocking mode. Then we could have
44-
# left out the sleep call in the bottom of the loop
45-
inp = alsaaudio.PCM(alsaaudio.PCM_CAPTURE, alsaaudio.PCM_NONBLOCK, device=device)
41+
f = open(args[0], 'wb')
4642

47-
# Set attributes: Mono, 44100 Hz, 16 bit little endian samples
48-
inp.setchannels(1)
49-
inp.setrate(44100)
50-
inp.setformat(alsaaudio.PCM_FORMAT_S16_LE)
43+
# Open the device in nonblocking capture mode in mono, with a sampling rate of 44100 Hz
44+
# and 16 bit little endian samples
45+
# The period size controls the internal number of frames per period.
46+
# The significance of this parameter is documented in the ALSA api.
47+
# For our purposes, it is suficcient to know that reads from the device
48+
# will return this many frames. Each frame being 2 bytes long.
49+
# This means that the reads below will return either 320 bytes of data
50+
# or 0 bytes of data. The latter is possible because we are in nonblocking
51+
# mode.
52+
inp = alsaaudio.PCM(alsaaudio.PCM_CAPTURE, alsaaudio.PCM_NONBLOCK,
53+
channels=1, rate=44100, format=alsaaudio.PCM_FORMAT_S16_LE,
54+
periodsize=160, device=device)
5155

52-
# The period size controls the internal number of frames per period.
53-
# The significance of this parameter is documented in the ALSA api.
54-
# For our purposes, it is suficcient to know that reads from the device
55-
# will return this many frames. Each frame being 2 bytes long.
56-
# This means that the reads below will return either 320 bytes of data
57-
# or 0 bytes of data. The latter is possible because we are in nonblocking
58-
# mode.
59-
inp.setperiodsize(160)
60-
61-
loops = 1000000
62-
while loops > 0:
63-
loops -= 1
64-
# Read data from device
65-
l, data = inp.read()
66-
67-
if l:
68-
f.write(data)
69-
time.sleep(.001)
56+
loops = 1000000
57+
while loops > 0:
58+
loops -= 1
59+
# Read data from device
60+
l, data = inp.read()
61+
62+
if l:
63+
f.write(data)
64+
time.sleep(.001)

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
from setuptools.extension import Extension
99
from sys import version
1010

11-
pyalsa_version = '0.8.6'
11+
pyalsa_version = '0.9.0'
1212

1313
if __name__ == '__main__':
1414
setup(

0 commit comments

Comments
 (0)