cpython/Demo/sgi/al/alwatch.py

41 lines
1.0 KiB
Python
Raw Normal View History

1991-09-15 18:05:15 -03:00
import time
1991-12-24 09:55:16 -04:00
import al, AL
import string
dev = AL.DEFAULT_DEVICE
parameter_name = [ \
'input source', 'left input atten', 'right input atten', \
1991-09-15 18:05:15 -03:00
'input rate', 'output rate', \
'left speaker gain', 'right speaker gain', \
'input count', 'output count', 'unused count', \
'sync input to aes', 'sync output to aes', \
]
1991-12-24 09:55:16 -04:00
source_name = ['line', 'microphone', 'digital']
params = al.queryparams(dev)
for i in range(1, len(params), 2):
params[i] = -1
1991-09-15 18:05:15 -03:00
while 1:
time.millisleep(100)
1991-12-24 09:55:16 -04:00
old = params[:]
al.getparams(dev, params)
if params <> old:
for i in range(0, len(params), 2):
if params[i+1] <> old[i+1]:
name = parameter_name[params[i]]
1992-03-30 09:30:03 -04:00
if params[i] == AL.INPUT_SOURCE:
1991-12-24 09:55:16 -04:00
if 0 <= old[i+1] < len(source_name):
oldval = source_name[old[i+1]]
else:
oldval = ''
newval = source_name[params[i+1]]
else:
oldval = `old[i+1]`
newval = `params[i+1]`
print string.ljust(name, 20),
print '(' + string.rjust(oldval, 10) + ')',
print '-->',
print string.rjust(newval, 10)
print