JurkMonkey
Programmer
Hey,
I have an audio device which I'm trying to set the bitrate on. So I've been using the following command:
my sampleChannels = 2 (Stereo) and my sampleRate = 44100. I want to drop it down to 22050 but it gives me an error.
MCI errmsg: The driver cannot recognize the specified command parameter.
Any ideas?
I have an audio device which I'm trying to set the bitrate on. So I've been using the following command:
Code:
sCommand = "set " + m_DeviceAlias + " time format ms tempo 60 bitspersample 8 channels " + sampleChannels + " samplespersec " + sampleRate + " format tag pcm";
rc = mciSendString(sCommand, null, 0, IntPtr.Zero);
my sampleChannels = 2 (Stereo) and my sampleRate = 44100. I want to drop it down to 22050 but it gives me an error.
MCI errmsg: The driver cannot recognize the specified command parameter.
Any ideas?