Tagged Questions
The sound-api tag has no wiki summary.
15
votes
6answers
5k views
Any good recommendations for MP3/Sound libraries for java?
I am writing my masters thesis which is closely related to processing sound files (mp3 and alternative formats such as ogg, aac, ...) and sound in Java. Because Java has so much open source support, I ...
11
votes
7answers
4k views
Get Master Sound Volume in c#
I need to get the current volume of what that outs to the sound card, for example, this value:
Any ideas how?
Thank you.
11
votes
3answers
4k views
How to generate sound effects in Java?
I'm looking for Java code that can be used to generate sound at runtime - NOT playback of existing sound files.
For example, what's the best code for generating a sawtooth waveform at 440 Hz for a ...
7
votes
10answers
14k views
What Is The Best C++ Sound API For Windows?
I am programming in C++ (Visual Studio 2008) and wish to do the following in both Windows XP and Windows Vista.
Play audio files (wav, mp3, others if they come along for free...) and be able to ...
7
votes
7answers
2k views
Game Development Sound Frameworks
I'm working with a team that's building an engine for a variety of 2D and eventually 3D mini-games. The problem we're facing is a solid, cross-platform, sound API. Obviously, DirectX is out of the ...
5
votes
1answer
196 views
Set any application's volume
I was wondering how I could set a specific application (as in any running application, not just my own)'s volume level in c#.
I know I'd probably have to use P/invoke, this is fine. I'm just not ...
4
votes
1answer
352 views
API for supporting Echo Cancellation in Windows Vista/7
In 2007, during the fever over DRM being included in Windows Vista, a Windows Vista Team blog was created to respond to a lot of the concerns. One of the questions responded to the ability of VoIP ...
4
votes
1answer
274 views
Java Sound Demo - Problem
I have downloaded and run the Java sound demo available on http://java.sun.com/. When I run the capture/playback example I can record and playback my voice. But after I save the voice in to a wav ...
4
votes
3answers
1k views
Is there a listener to listen for changes in the volume in android?
Is it possible to register a listener to listen for changes in the volume level of the music stream in Android?
I'm displaying the actual volume in a SeekBar and I would like to change the seekbar if ...
3
votes
3answers
166 views
Sound Engine with good memory management (iPhone/iPad)
I'm looking for simple sound engine without advanced effects but with good management of buffers memory. At least it must track all playing sounds, unload not used sound buffers (but keep all ...
3
votes
1answer
213 views
How to play non default system sounds in .NET
I want to play system sounds with .NET code in my app - no problem if I want to use Beep, Asterisk etc as I can just use:
My.Computer.Audio.PlaySystemSound(Media.SystemSounds.Asterisk)
But what if ...
3
votes
1answer
181 views
C# and reading sound from another process?
I'm currently developing an application that interacts directly with a puzzle game in C#. It's able to play by screen scraping the state of the game and then solving for the next move it should make.
...
3
votes
4answers
3k views
Sound Synthesis Framework in C/C++/Objective-C?
I've searched the net but didn't found anything interesting. Maybe I'm doing something wrong.
I'm looking for sound synthesis API written on C, C++ or even Objective-C, which can synthesize ...
3
votes
6answers
4k views
Is DirectSound the best audio abstraction layer for Windows?
Is DirectSound the best audio abstraction layer for Windows?
Switching my app from a very bad sound implementation, built to a specific chipset, to an abstration layer.
App is native Winform, .net ...
2
votes
3answers
36 views
where to place sound files relative to a java project?
This is the first time I've implemented sounds but I can't figure out where to actually place the sounds to play them. I am using Eclipse as my IDE and I've put my sounds in a folder called sounds.
...
2
votes
0answers
135 views
Python : get master volume windows 7
I am trying to built an App in which user has to just scroll his/her mouse over the windows sound icon to change the sound level. Linux users are already familiar with this.
I have divided my problem ...
2
votes
2answers
179 views
Is there a way to play a system beep on Mac OS?
Is there a way to play a system beep on Mac OS using C++ and Xcode? I understand that I need to use a library. Is there a library that works across both the Mac and Windows platforms?
2
votes
1answer
142 views
Changing the master volume in C#
Ok, I have a problem, I have tried so hard just to change the master volume in C#, it seems like the answerers of the questions appear to be doing rocket science, or they just add a bunch of extra ...
2
votes
1answer
136 views
How to specify a sound card for use with mciSendString API
I am updating an old VB6 app. Back in the day, I coded a wrapper around the mciSendString command to be able to record and playback audio. Back then, computers typically had a single audio card.
...
2
votes
1answer
86 views
Java Midi sequencer stops producing sound after a few times. How do I debug/resolve?
I'm writing some code to play music using the Java sound library.
private Sequencer sequencer ;
...
void play(Sequence sequence) {
sequencer.open() ;
sequencer.setSequence(sequence) ;
...
2
votes
4answers
172 views
Playing an arbitrary sound on Windows?
How do I, say, play a sound with a given amplitude and a given frequency makeup (say, consisting of frequencies 2 kHz and 3 kHz) natively on Windows (32-bit and 64-bit, up to Windows 7)?
(By natively ...
2
votes
1answer
557 views
Windows Vista/7: How to sample output audio mix?
How can i gain access to the current wave output sample stream?
In a December 2006 question on social.microsoft.com (How to record from 'Wave' or 'Stereo Mix' in Vista?) yjslash asked:
On Windows ...
2
votes
2answers
513 views
Qt: How to play sound witout blocking main thread?
I'm wondering is there a simple way in Qt to play sound without blocking the main thread ?
I know that normaly I should start a seperate thread to do this. But maybe there is a shortcut ? :)
Thanks ...
2
votes
1answer
120 views
Sound properties manipulation in python
I am searching for a lib that helps me to use many sound properties.
I mean, I need something to get each frequency of sounds, get the sound waves length and width, get the peak and trough (in a ...
2
votes
2answers
420 views
No sound come in…Problem in play MIDI file in C#.Net
I use this code to play a MIDI file for my game, but I cannot hear any sound from my speakers,Would u help me? its kind of emergency plz....
my speaker is turn on ;)
[DllImport("winmm.dll", ...
2
votes
2answers
437 views
Pitch manipulation of Audio recorded Sounds
I have a challenging task please help
Task:
Just say something into your iPhone or capture a friend saying something.
Then application make it sound even MORE ridiculous with your choice of over a ...
2
votes
2answers
495 views
Java Sound API: Capturing sound output from a Target Port
I'm writing a simple piece of software that streams audio over LAN. I have all of the network parts implemented, but what I'm stumbling on is using the Java Sound API. I have successfully captured ...
2
votes
3answers
965 views
Java playing sounds. Is there a default system sound?
Hi I am trying to write an application that will play morse code. I just wanted to know if there was a default system sound in java like some beep, or do I have to download some sound file from the ...
2
votes
1answer
592 views
In Java, how can I play the same audio clip multiple times simultaneously?
If I have a java.applet.AudioClip object I can call play on it to play it once. But if I call play multiple times then the clip will simply keep restarting. The only way to get around that seems to be ...
2
votes
5answers
1k views
C++ Sound Processing
I'm looking for a library that could be used to manipulate audio files. Essentially what I would like to do is:
Load an MP3/WAV file
Get a 15 second clip of the file
Overlay another MP3/WAV file ...
2
votes
2answers
2k views
Why is my SoundPool mute?
I setup my SoundPool, and load a sound resource as this in onCreate():
soundPool = new SoundPool(4, AudioManager.STREAM_MUSIC, 0);
soundId = soundPool.load(this, R.raw.edible_underwear, 1);
And ...
2
votes
2answers
3k views
Set ringtone in iPhone SDK
how an application can set a ringtone in iPhone?
Thanks in advance,
Etam.
2
votes
5answers
1k views
Pitch Detection In Mac OS X
I don't suppose anyone is aware of any libraries that allow you to detect the current pitch (that is, in notes) received by the microphone in Mac OS X? I'm assuming it'd be a mixture of Objective-C ...
2
votes
2answers
473 views
Tool for exploring Windows Vista Audio device chain (tree?)
The new Vista Audio subsystem is set up to be a chain of devices starting with the inputs, going through all the various controls (like mixers and volumen controls) and then ending up at various ...
2
votes
2answers
2k views
Volume (Balance) Control for XP/Vista
Is there a method for controlling the Balance of the Wave output that will work on both XP and Vista?
1
vote
1answer
37 views
Mixing 2 audio files
I have two audio files. I want to mix them together so that when played, they play on top of each other simultaneously.
Is there any API available that can help me do that?
1
vote
1answer
71 views
Is it possible to capture both mic and line-in at the same time using ALSA?
Not terribly familiar with ALSA, but I'm supporting an application that uses it.
Is it possible to record audio from both the mic and line-in simultaneously? Not necessarily mixing the audio, though ...
1
vote
1answer
95 views
Get audio samples from byte array
How to get data samples from QAudioInput
I found in this examples code from audioinput example code
void InputTest::readMore()
{
if(!m_audioInput)
return;
qint64 len = ...
1
vote
1answer
194 views
Classic sound mixer
Good day, everyone!
I write a sound mixer and I need getting under sound device capabilities control such as I can got with windows mixer. I can manipulate general volume and mute states of mixer, ...
1
vote
1answer
144 views
Titanium How to goback 5 secs back while playing, on button click this should happen
I have the following code.
var file = recording.stop();
sound = Titanium.Media.createSound({sound:file});
sound.play();
sound.getTime(); // This will return the current time position of the audio.
...
1
vote
1answer
32 views
Sound implementation in Symbian^3
I am looking around to implement sound in my Symbian^3 game application. Are the examples of Symbian S60 work well for Symbian^3 devices? I am in doubt because syntax is different for S60 and ...
1
vote
0answers
256 views
Xuggler screenRecording code affecting sound recording
I am working on an application for screencast with audio. screen recording with sound is working fine but the issue is that suppose I do recording of 5 mins then generated video file is of 5 min but ...
1
vote
3answers
257 views
adding sound to an OpenGL app
i am creating an OpenGL application and decided to look into adding sound...
what is the best sound(api?) i was thinking about using OpenAL but i had issues finding any good resources...
if possible ...
1
vote
1answer
234 views
iPhone: Detecting a replicated sound of particular frequency (amplitude)
I am trying to write an iPhone App that should monitor the any incoming sound. I am not sure how can I get the sound recorded by iPhone's Microphone and detect its frequency. If same frequency sound ...
1
vote
1answer
90 views
how to get a sound notification in terminal once a job has been completed
I run jobs on a remote machine . The jobs take a few mins to complete and I'd like a sound notification on my local machine in order to know that the job has been completed . Can anybody suggest a ...
1
vote
1answer
91 views
1
vote
2answers
278 views
Output sound to multiple channels of the sound card
I am trying to build a program in Java, which would be able to output sound to different output lines on my sound card.
How is it possible to do in Java?
1
vote
1answer
199 views
I'm trying to get the volume level of a wav file using java's Sound API, but haven't been able to figure it out
I'm going to be processing a lot of audio files, I don't need to play the files, but I want to be able to get the volume level at a regular interval (e.g. every second), so I can roughly graph the ...
1
vote
2answers
98 views
Could anyone direct me to a good Java sound guide?
I am currently trying to make a metronome with adjustable rhythm and tempo, but I have no idea how to use the Java sound API.
1
vote
0answers
202 views
Linux ALSA/Sound-API Questions - How do you mute?
How do I mute sound using C? Is there an ALSA function call?
Are there any other function calls/APIs that can MUTE the microphone?
I have written some code to do audio playback using ALSA, and I ...