Scott Lacy Smith
2004-04-07 05:40:01 UTC
Hello
I am looking for the Linux equivalent of
waveOutOpen()
waveOutWrite()
These are Win32 calls to let you play wav file on windows.
In general what is the preferred API to play wave files on Linux.
waveOutOpen and waveOutWrite are not really for playing wav files,I am looking for the Linux equivalent of
waveOutOpen()
waveOutWrite()
These are Win32 calls to let you play wav file on windows.
In general what is the preferred API to play wave files on Linux.
they are how you interface to the sound system on Windows.
On many Linux/Unix systems the sound device appears as a file you
open for writing:
fp = fopen("/dev/dsp", "w");
...
fwrite(..., fp);
...
fclose(fp);
--
Scott Lacy Smith <***@qwest.net>
"Nullus Anxietas"
Scott Lacy Smith <***@qwest.net>
"Nullus Anxietas"