cpython/Demo/sgi/cd/cdaiff.py

34 lines
604 B
Python
Raw Normal View History

1992-04-15 14:52:27 -03:00
import sys
import readcd
import aiff
import AL
import CD
1992-06-03 13:49:44 -03:00
Error = 'cdaiff.Error'
1992-04-15 14:52:27 -03:00
def writeaudio(a, type, data):
a.writesampsraw(data)
def main():
1992-06-03 13:49:44 -03:00
if len(sys.argv) > 1:
a = aiff.Aiff().init(sys.argv[1], 'w')
else:
a = aiff.Aiff().init('@', 'w')
1992-04-15 14:52:27 -03:00
a.sampwidth = AL.SAMPLE_16
a.nchannels = AL.STEREO
a.samprate = AL.RATE_44100
r = readcd.Readcd().init()
1992-04-15 14:52:27 -03:00
for arg in sys.argv[2:]:
x = eval(arg)
try:
1992-06-03 13:49:44 -03:00
if len(x) <> 2:
raise Error, 'bad argument'
r.appendstretch(x[0], x[1])
except TypeError:
r.appendtrack(x)
1992-04-15 14:52:27 -03:00
r.setcallback(CD.AUDIO, writeaudio, a)
1992-06-03 13:49:44 -03:00
r.play()
1992-04-15 14:52:27 -03:00
a.destroy()
main()