diff options
author | Guido van Rossum <guido@python.org> | 1993-07-10 12:11:56 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1993-07-10 12:11:56 (GMT) |
commit | 697e7abbc8f5d8188c09181e308827a45eacfc14 (patch) | |
tree | c8d7ab8dc334239d0a3a80aa5694f2e4444a6666 /Demo/sgi | |
parent | e22e6442b748f5f4703cb6f221e1e10b320d0295 (diff) | |
download | cpython-697e7abbc8f5d8188c09181e308827a45eacfc14.zip cpython-697e7abbc8f5d8188c09181e308827a45eacfc14.tar.gz cpython-697e7abbc8f5d8188c09181e308827a45eacfc14.tar.bz2 |
Use module aifc instead of module aiff.
Diffstat (limited to 'Demo/sgi')
-rwxr-xr-x | Demo/sgi/cd/cdaiff.py | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/Demo/sgi/cd/cdaiff.py b/Demo/sgi/cd/cdaiff.py index 79a9328..3f14bce 100755 --- a/Demo/sgi/cd/cdaiff.py +++ b/Demo/sgi/cd/cdaiff.py @@ -1,22 +1,22 @@ import sys import readcd -import aiff +import aifc import AL import CD Error = 'cdaiff.Error' def writeaudio(a, type, data): - a.writesampsraw(data) + a.writeframesraw(data) def main(): if len(sys.argv) > 1: - a = aiff.Aiff().init(sys.argv[1], 'w') + a = aifc.open(sys.argv[1], 'w') else: - a = aiff.Aiff().init('@', 'w') - a.sampwidth = AL.SAMPLE_16 - a.nchannels = AL.STEREO - a.samprate = AL.RATE_44100 + a = aifc.open('@', 'w') + a.setsampwidth(AL.SAMPLE_16) + a.setnchannels(AL.STEREO) + a.setframerate(AL.RATE_44100) r = readcd.Readcd().init() for arg in sys.argv[2:]: x = eval(arg) @@ -28,6 +28,6 @@ def main(): r.appendtrack(x) r.setcallback(CD.AUDIO, writeaudio, a) r.play() - a.destroy() + a.close() main() |