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,f32bbeaf2a1de22d X-Google-Attributes: gid103376,public X-Google-ArrivalTime: 2003-03-18 05:25:02 PST Path: archiver1.google.com!news2.google.com!news1.google.com!sn-xit-03!sn-xit-01!sn-xit-09!supernews.com!iad-peer.news.verio.net!news.verio.net!newsfeed.vmunix.org!feed.news.nacamar.de!uninett.no!ntnu.no!not-for-mail From: Preben Randhol Newsgroups: comp.lang.ada Subject: Re: microphone and sound access in Ada Date: Tue, 18 Mar 2003 13:12:55 +0000 (UTC) Organization: Norwegian university of science and technology Message-ID: References: <6a90b886.0303180318.7f4f013e@posting.google.com> NNTP-Posting-Host: kiuk0152.chembio.ntnu.no X-Trace: tyfon.itea.ntnu.no 1047993175 8820 129.241.83.78 (18 Mar 2003 13:12:55 GMT) X-Complaints-To: usenet@itea.ntnu.no NNTP-Posting-Date: Tue, 18 Mar 2003 13:12:55 +0000 (UTC) User-Agent: slrn/0.9.7.4 (Linux) Xref: archiver1.google.com comp.lang.ada:35450 Date: 2003-03-18T13:12:55+00:00 List-Id: Adrian Knoth wrote: > > Yes. I proposed that some weeks ago, perhaps we should start. Any further > interests? I'm in. Although, I have to read up on how to do C bindings first as I haven't done this before. I guess GtkAda is a good source for examples :-) There are three libraries: libao: Libao is a cross-platform library that allows programs to output PCM audio data to the native audio devices on a wide variety of platforms. It currently supports: * OSS (Open Sound System) * ESD (ESounD) * ALSA (Advanced Linux Sound Architecture) * Sun audio system (used in Solaris, OpenBSD, and NetBSD) * aRts (Analog Realtime Synthesizer) (hope this can do input as well) libogg: Libogg contains necessary functionality to create, decode, and work with Ogg bitstreams. libvorbis: * libvorbisenc Libvorbisenc is a convenient API for setting up an encoding environment using libvorbis. Libvorbisenc encapsulates the actions needed to set up the encoder properly. * Vorbisfile The Vorbisfile library provides a convenient high-level API for decoding and basic manipulation of all Vorbis I audio streams. Libvorbisfile is implemented as a layer on top of Xiph.org's reference libogg and libvorbis libraries. Vorbisfile can be used along with any ANSI compliant stdio implementation for file/stream access, or use custom stream i/o routines provided by the embedded environment. Both uses are described in detail in this documentation. -- This is Ada95 land. On quiet nights you can hear C programmers debug.