I'm running Win Vista, at the lower right side of the window there is a speaker icon next to the clock, I can click on it and adjust the volume, I wonder if there is a way in my Java program to do this automatically. For instance when my Java program starts, it turns the volume to 80, and when the program exits, it changes the volume bac...
Hi,
I am trying to increase the volume of my Audio Output using the speakHere example from Apple. The volume is already set to max with :
// set the volume of the queue
XThrowIfError (AudioQueueSetParameter(mQueue, kAudioQueueParam_Volume, 1.0), "set queue volume");
However, the output is directed to the ear-piece speaker, which is...
I just tried the below code, and it works fine to reduce the echo on head phones. But the problem of echo remains as it is in case of speakers.
public var intCountMilliSec:int = 0;
public var intLastActivityLevel:int = 0;
public var intLastLowestActivityLevel:int = 100;//07-Dec-09
private function CancelEcho(e:TimerEvent):void...
I would like to know from some iphone-Audio expert if there is a way to let a sound play through the line in of the microphone, or at least to play from the speaker (not the receiver) during a call.
I've tried different combinations of AVAudioSessionCategory with kAudioSessionProperty_OverrideAudioRoute, but I've noticed that when the i...
Hi,
by default adobe Sound mixer sends eveything to the default speaker device.
I have 3 speaker devices and would like to configure where to direct the sound.
Similar thing that we can do right now with microphone is Microphone.getDevice(name) where i have a freedom of choosing my microphone device. Similarly i want the freedom to sel...
I got the following code:
- (id)init {
if (self = [super init]) {
UInt32 sessionCategory = kAudioSessionCategory_MediaPlayback;
AudioSessionSetProperty(kAudioSessionProperty_AudioCategory, sizeof(sessionCategory), &sessionCategory);
UInt32 audioRouteOverride = kAudioSessionOverrideAudioRoute_Speaker;
...
I've been listening music on my Samsung i7500 Galaxy with headset plugged to the device. After listening I've plugged headset out and now while I call to somebody I see there is a call on the device screen, but either me, either person whom I am calling to, doesn't hear the other person. While I plug headset again I can hear everything (...
Hello
I got some questions on playback music via speaker.
i found an example in the following link
http://stackoverflow.com/questions/1022992/how-to-get-avaudioplayer-output-to-the-speaker
but the question is how to make sure i successfully implemented playing music via "speaker"?
I wrote the code as the link, but it seems no difference ...
I'm curious if you could play sounds through the speaker while talking on the phone?
For instance, play the sound of waves so the other guy would think you're at the seaside :)
...