1
vote
1answer
36 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 …
0
votes
1answer
14 views
can I make Flash/swf “movie” in which I can scroll back and forth through the sound recording?
so suppose I have a long sound recording as part of a Flash presentation. Can I put on the presentation a scrollbar and start/stop/pause/resume buttons as in Media Player or Windows sound recorder …
0
votes
1answer
145 views
Adjust volume and prevent computer from standby in Java… (Mac and Windows XP, Vista)
I am writing a Java program that wants to do 3 things, and I don't know how to do them or if it's even possible with Java.
1 - I want to ensure that the computer whether running mac OS or windows …
0
votes
1answer
62 views
Java Sound API to access the system/master volume control in Vista and Win 7
History & Situation:
I'm currently working on updating a Java application that was developed for a client several years ago (to run on WinXP) and is used for testing and training people with …
9
votes
6answers
981 views
Any good recommendations for MP3/Sound libraries for java?
Hello all!
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 …
2
votes
4answers
132 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 …
1
vote
2answers
85 views
Controlling the volume while using the SndPlayAsync function on Windows Mobile 6
How on earth can you control the volume of the sound played using SndPlayAsync on Windows Mobile 6??
It seems like no one knows! The documentation doesn't mention anything regarding it...
So either …
0
votes
2answers
132 views
SoundEngine sample leaks
Hello!
I use SoundEngine sample from CrashLanding sample Iphone SDK.
When i run my project i found small memory leaks when sound engine initialize.
Can anyone help me with this?
0
votes
3answers
578 views
iPhone SDK - OpenAL, ‘Beat Box’ style sound engine
How would one go about creating a 'beat box' style sound engine, where a series of sounds can be queued up ahead of time and during playback. These sounds need to play back without any gaps or …
1
vote
4answers
54 views
Which mobile platform to use creation of a musicians support application - recording and playback?
I'm a programmer looking to play in the mobile world. The application I'd like to play with would support my musical hobbies. I suspect a mobile phone with a music player could easily be programmed to …
1
vote
2answers
79 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 …
1
vote
1answer
28 views
audio (tag?) info via cmd line or .NET?
I know formats such as mp3, ogg and flac have tags such as artist, album etc.
I would like to extract that information if available. Right now i am using ffmpeg to conv the audio so a way to do it …
0
votes
2answers
221 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 …
0
votes
4answers
379 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 …
1
vote
3answers
215 views
Fast Audio Input/Output
Here's what I want to do:
I want to allow the user to give my program some sound data (through a mic input), then hold it for 250ms, then output it back out through the speakers.
I have done this …
