000
06.04.2004, 19:10 Uhr
matze23
|
Hallihallo,
kennt jemand eine einfache Möglichkeit unter Linux eine WAV Datei asynchron abzuspielen? unter windows hab ich schon was in der Art entdeckt, würde so
C++: |
PlaySound("file.wav", NULL, SND_FILENAME | SND_ASYNC);
|
aussehen. oder muß man das auf die komplizierte Tour machen?
C++: |
dsp = open("/dev/dsp", O_WRONLY); ioctl(dsp, SNDCTL_DSP_SAMPLESIZE, &bit)
|
usw... in einem posix thread |