sound

Sound Files manipulation on Iphone

I need to find out how I can manipulate sound files on the Iphone. I am mainly seeking ways to add echo sound effect by manipulating the Delay Time, Amplitude and Decay Time. Any assistance will be appreciated ...

Controlling volume of a Clip when using Java Sound (javax,sound.sampled)

I'm using Java sound to play back a number of sound samples with the Clip.start() method. Given this, what is the best way to control the playback volume? In particular, I'm very keen that the solution will work reliably across platforms. ...

Can I programatically save the data stream sent to the sound card as a WAV file?

In Windows XP, you can configure your sound card properties via the preloaded windows software. In the recording properties, if "stereo mix" or "wave out" (or something similar) is selected as the recording device, programs that can record audio ("Sound Recorder" in windows for example) record a decent quality wave file of the audio str...

How to trigger from Python playing of a WAV or MP3 audio file on a Mac?

I'm looking for an elegant way, without a ton of dependencies as in some of the solutions I googled up. Thanks for any ideas. ...

how to play sound from C#.Net

hi i have made an window based application using C# .Net and i want to play a specific sound when i click on Button so what should i do? does it require any dll for that.. please inform me precisely ...

Play .WMV with C#.Net

Hi I want to play a WMV (Or Video File ) in C# Application.. I Have made software in which when i click file then File menu opens then i select the media file but then when i click on play then file should be played.. so please guide me... and if any dll is required then please tell me ... thanks in advance ...

Cocoa Touch - AVAudioPlayer

I put my avfoundation into frameworks by adding existing frameworks and importing it into my viewcontroller like this #import <AVFoundation/AVAudioPlayer.h> I then called it in my IBAction so when a button pressed it, it plays like so. -(IBAction)playSound{ //play the cricket noise NSString *path = [[NSBundle mainBundle] pathForResour...

How to play .wav file from URL in web browser embed - Java

Hi; I want to play a .wav sound file in embed default media player in IE. Sound file is on some HTTP location. I am unable to sound it in that player. Following is the code. URL url = new URL("http://www.concidel.com/upload/myfile.wav"); URLConnection urlc = url.openConnection(); InputStream is = (InputStream)urlc...

How to play multiple .wav files simultaneously in delphi

I wish to multiple .wav files simultaneously in delphi. When I open and plat the first things are fine. However the second one causes a error when it tries to open. It would appear that i can only use one media player at a time.... is there any way around this what do i do? ...

Actionscript 3: playing sound from library with name from string

I am trying to write some actionscript 3 code to play short sounds from the library, using a dynamically created string to load it. In AS2, I could do something like this: mySound = new Sound(); mySound.attachSound("any concatenated string" + foo); In AS3 however, the identifier is a class whose name, it seems, must be already known....

Echo Sound Effect

I am looking to build a a small program that reads a sound file and applies echo effect to it. I am seeking guidance for how to accomplish this. ...

aplay / alsaplayer - sound not working for normal user

I cannot use alsa as a normal user (resulting in me not having sound in chromium). I am guessing it has something to do with permissions. Adding myself to group audio didn't help. [zarac@towelie ~]$ grep audio /etc/group audio:x:92:mpd,zarac Testing sound as normal user: [zarac@towelie ~]$ aplay /usr/share/sounds/alsa/Noise.wav ALSA...

Sound processing in C++ on Windows - a nudge in the right direction

I want to write a simple sound editor with a very specific purpose: cutting and re-gluing an audio file (which will contain spoken prose) in such a way that each sentence is repeated N times. (This is for foreign language learning.) I don't want to use an existing sound editor because I would like to tailor the GUI specifically for this...

How to have a sound consistently looped while button is pressed and stopped on release?

My question is a very simple one i'm sure. It's just I'm not quite sure how to effectively describe what i'm trying to achieve. Anyway to the point, I have a simple button, I know how to "link" a raw sound file to hand make it play. BUT what i want to do is maybe link a 3 second sound to the button and just have it loop while the user ...

Best way to play sound on a timed interval?

I have an Android app which needs to play a sound resource on a timed interval, say every 120 seconds. I know how to access the sound resources and play them, however it's time timer part I'm not sure of. What's the best approach? ...

Very simple ListPreference to play sound is not working. Any ideas? (tons of details)

Could someone maybe tell me what i'm doing wrong? I'm betting im missing one small thing. I've looked on the developer site and i've read some tutorials and i'm just not seeing what i did wrong. I'm trying to use a ListPreference to decide which sound to play on a button click. I have this at the top: public String greensound; Here'...

How to loop a sound without gaps in www site

I need this sound http://www.sound-effect.com/sounds1/noise/Static_Stereo.wav to play in background of my site all the time. Is it possible to do this without gaps? I understand that in most of the sites sound is annoying for users, but this site is exception. This sound is essential in this site. ...

How do I make an array of SystemSoundIDs? Using AudioToolbox framework

I'm used to creating sounds like this: NSString *explosionsoundpath = [[NSBundle mainBundle] pathForResource:@"explosion" ofType:@"caf"]; CFURLRef explosionurl = (CFURLRef ) [NSURL fileURLWithPath:explosionsoundpath]; AudioServicesCreateSystemSoundID (explosionurl, &explosion1a); AudioServicesCreateSystemSoundID (explosionurl, &explosio...

Playing a sound in a Firefox add-on

I would like to create a simple add-on that would play a different MP3 recording every time the user double clicks a word in a webpage he is visiting and selects a special option from the context menu. The MP3 files are located on a remote server. Normally I would use JavaScript+Flash to play the MP3 file. In a Firefox add-on, however,...

Recognizing notes within recorded sound - Python

Hi folks, I'm wondering if I can extract a sequence of musical notes from a recorded sound using Python. It is the first time I'm considering using Python for this. Help would be truly awesome :) ...