From: Guido van Rossum Date: Fri, 13 Dec 1996 00:19:56 +0000 (+0000) Subject: Added support for 4-channel on SGI. X-Git-Tag: v1.5a1~766 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=27eb14d89479ff23b7f66b274e46993e386e7aa7;p=thirdparty%2FPython%2Fcpython.git Added support for 4-channel on SGI. Allow specifying the test file on the command line. --- diff --git a/Lib/audiodev.py b/Lib/audiodev.py index 7a8a25447052..c76a5022d8b3 100644 --- a/Lib/audiodev.py +++ b/Lib/audiodev.py @@ -23,6 +23,7 @@ class Play_Audio_sgi: self.nchannelslist = [ (1, AL.MONO), (2, AL.STEREO), + (4, AL.QUADRO), ] self.sampwidthlist = [ (1, AL.SAMPLE_8), @@ -224,7 +225,12 @@ def AudioDev(): else: return Play_Audio_sgi() -def test(fn = 'f:just samples:just.aif'): +def test(fn = None): + import sys + if sys.argv[1:]: + fn = sys.argv[1] + else: + fn = 'f:just samples:just.aif' import aifc af = aifc.open(fn, 'r') print fn, af.getparams()