Hi All, Is it possible with coreaudio to play a sound out of the left or right channel. For example I want to play one out of the left channel and one out of the right.
At the moment I'm successfully using the following code to play a sound out of both channels:
NSSound *mySound = [[NSSound alloc] initWithContentsOfFile:@"/media/bell.wav" byReference:YES];
[mySound play]
Also I can't seem to find a full list of filetypes supported by ' initWithContentsOfFile'.
Thanks in advance.
Chris