From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on polar.synack.me X-Spam-Level: X-Spam-Status: No, score=-1.9 required=5.0 tests=BAYES_00 autolearn=ham autolearn_force=no version=3.4.4 X-Google-Language: ENGLISH,ASCII-7-bit X-Google-Thread: 103376,2115fc880c42dca2 X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 1995-02-01 09:29:38 PST Path: nntp.gmd.de!Germany.EU.net!wizard.pn.com!satisfied.elf.com!news.mathworks.com!news.kei.com!ub!csn!boulder!news.coop.net!news.den.mmc.com!iplmail.orl.mmc.com!usenet From: "Theodore E. Dennison" Newsgroups: comp.lang.ada Subject: Re: Audio interfaces for Sun SparcStation ? Date: 1 Feb 1995 17:29:38 GMT Organization: IPL InterNetNews site Message-ID: <3goge2$5dn@theopolis.orl.mmc.com> References: <3gee76$jt3@Starbase.NeoSoft.COM> NNTP-Posting-Host: milkyway.orl.mmc.com Date: 1995-02-01T17:29:38+00:00 List-Id: progers@Starbase.NeoSoft.COM (Pat Rogers) wrote: > > Hello, > > I'm looking for interfaces to the Sun audio capabilities (specifically, > Sun SparcStation-20 running SunOS 4.1.X, AKA Solaris 1.X). Ada is > obviously my preference, but C would do. The docs are on order, so I don't > yet have them, but clearly if you know of interfaces that are already > developed then that would be optimum! > Here is an instance where it doesn't matter much what language you use; Ada should work just as well as C. Just open the audio device (/dev/audio) with sequential_io or some such IO package, and write your audio data to it. T.E.D.