Programming audio hardware, and the various audio formats or containers.
91
votes
7answers
19k views
What does this gdb output mean?
I've got a button that plays a sound, and it seems to work perfectly fine on the simulator, but i'm getting this message:
Error loading ...
76
votes
10answers
82k views
How do I record audio on iPhone with AVAudioRecorder?
Now that iPhone 3.0 sdk is public, I think I can ask this question for those of you that have already been playing with the 3.0 sdk. I want to record audio in my application, but I want to use ...
73
votes
8answers
45k views
Cross-platform, cross-browser way to play sound from Javascript?
I am writing a dhtml application that creates an interactive simulation of a system. The data for the simulation is generated from another tool, and there is already a very large amount of legacy ...
60
votes
10answers
64k views
Play Audio from a Stream using C#
Is there a way in C# to play audio (e.g. MP3) direcly from a Stream (I mean the real .NET class) that for instance was returend from a WebRequest without saving the data temporarily to the disk?
...
56
votes
5answers
91k views
How can I play sound in Java?
I want to be able to play sound files in my program. Where should I look?
53
votes
11answers
13k views
Version control for binaries
What version control systems would be useful or have extra features to support projects that are mainly binary files like mp3, wav, or proprietary application-specific file types?
52
votes
15answers
58k views
Autoplay audio files on an iPad with HTML5
I'm trying to get an audio file to autoplay in Safari on an iPad. If I go to the page using Safari on my Mac, it's fine. On the iPad, autoplay does not work.
44
votes
3answers
24k views
Using the apple FFT and accelerate Framework
Has anybody used the apple FFT for an iPhone app yet or know where I might find a sample application as to how to use it? I know that apple has some sample code posted, but I'm not really sure how to ...
44
votes
9answers
66k views
Playing sound notifications using Javascript?
How can I do that, so whenever a user clicks a link we play a sound? Using javascript and jquery here.
40
votes
3answers
14k views
Analyze audio using Fast Fourier Transform
I am trying to create a graphical spectrum analyzer in python.
I am currently reading 1024 bytes of a 16 bit dual channel 44,100 Hz sample rate audio stream and averaging the amplitude of the 2 ...
39
votes
7answers
45k views
HTML 5 video or audio playlist
Can I use a <video> or <audio> tag to play a playlist, and to control them?
My goal is to know when a video/song has finished to play and take the next and change its volume.
39
votes
2answers
6k views
How bad is Android SoundPool? What alternative to use?
I was looking at Android's SoundPool as a mechanism to implement sound effects in my generic game development library. It seemed ideal.
But a little bit of research indicates that there all kinds of ...
34
votes
9answers
5k views
Given an audio stream, find when a door slams (sound pressure level calculation?)
Not unlike a clap detector ("Clap on! clap clap Clap off! clap clap Clap on, clap off, the Clapper! clap clap ") I need to detect when a door closes. This is in a vehicle, which is easier than a ...
33
votes
2answers
4k views
Writing musical notes to a wav file
I am interested in how to take musical notes (e.g A, B, C#, etc) or chords (multiple notes at the same time) and write them to a wav file.
From what I understand, each note has a specific frequency ...
32
votes
0answers
2k views
Must-see tech talks/presentations? [duplicate]
Possible Duplicate:
Favorite online lectures and presentations
There are now several places that offer free audio or video tech talks/presentations online: I'm thinking of Google Tech ...
31
votes
7answers
29k views
Play audio with python
How can i play audio (it would be like a 1sec sound) from a python script?
It would be best if it was platform independent, but first of it needs to work on a mac.
I know i could just execute the ...
30
votes
1answer
3k views
Using System.Speech with Kinect
I am developing a prototype speech to text captioning application for a University project. I am going to be using gesture recognition within my project late on, so I thought it would be a good idea ...
30
votes
1answer
4k views
Android - MediaPlayer Buffer Size in ICS 4.0
I'm using a socket as a proxy to the MediaPlayer so I can download and decrypt mp3 audio before writing it to the socket. This is similar to the example shown in the NPR news app however I'm using ...
29
votes
5answers
11k views
Open source C# code to present wave form?
Is there any open source C# code or library to present a graphical waveform given a byte array?
28
votes
12answers
17k views
Beats per minute from real-time audio input
I'd like to write a simple C# application to monitor the line-in audio and give me the current (well, the rolling average) beats per minute.
I've seen this gamedev article, and that was absolutely no ...
28
votes
6answers
20k views
Sound not working in iPhone Simulator?
Somehow my iPhone Simulator is unable to play sounds. First an app I'm working on using AudioServicesPlaySystemSound() stopped working.. I spent a while debugging this but sound is still working on ...
28
votes
5answers
20k views
Playing an arbitrary tone with Android
Is there any way to make Android emit a sound of arbitrary frequency (meaning, I don't want to have pre-recorded sound files)?
I've looked around and ToneGenerator was the only thing I was able to ...
28
votes
5answers
10k views
Python Music Library?
I'm looking at writing a little drum machine in Python for fun. I've googled some and found the python pages on music and basic audio as well as a StackOverflow question on generating audio files, ...
28
votes
2answers
2k views
Saving audio input of Android Stock speech recognition engine
I am trying to save in a file the audio data listened by speech recognition service of android.
Actually I implement RecognitionListener as explained here:
Speech to Text on Android
save the data ...
28
votes
0answers
261 views
Unable to Open SCOAudio connection with phone
I am trying to use IOBluetooth framework on OS X 10.8.2 to connect with the bluetooth enabled phones emulating computer as a hands free device. I can successfully make a connection with the phone and ...
27
votes
2answers
16k views
Play audio file from the assets directory
I have the following code:
AssetFileDescriptor afd = getAssets().openFd("AudioFile.mp3");
player = new MediaPlayer();
player.setDataSource(afd.getFileDescriptor());
...
27
votes
12answers
20k views
How to detect BPM of the song by programming
How can the tempo/BMP of a song be determined programmatically? What algorithms are commonly used, and what considerations must be made?
27
votes
4answers
18k views
Implementing webbased real time video chat using HTML5 websockets
Does anyone know how to implement voice/video over IP in a webapplication using HTML5 websockets?
It would be nice if I could implement this with PHP or Python since I (unfortunately) don't know any ...
27
votes
3answers
1k views
Disable noise cancellation for microphone in Android (1.5)?
Is it possible to disable noise cancellation for the microphone in Android (specifically 1.5) via code?
I want to create a dumb MicrophoneApp that records all the background noises, but I believe ...
26
votes
4answers
10k views
ffmpeg: 1 image + 1 audio file = 1 video [closed]
This should be pretty trivial but I can't find a way to get it to work.
I want ffmpeg to take one jpg image and an audio file as input and generate a video file of the same duration as the audio file ...
26
votes
7answers
10k views
Slow start for AVAudioPlayer the first time a sound is played
I'm trying to eliminate startup lag when playing a (very short -- less than 2 seconds) audio file via AVAudioPlayer on the iPhone.
First, the code:
NSString *audioFile = [NSString ...
26
votes
8answers
1k views
Where can I get freely available audio, graphics, and other resources for games?
I've done a google search of this topic, but so far haven't found anything satisfactory.
From your experience, what's the best place to get game resources, like sprites, backgrounds, sound effects, ...
26
votes
2answers
18k views
This code to write video+audio through AVAssetWriter and AVAssetWriterInputs is not working. Why?
I've been trying to write a video+audio using AVAssetWriter and AVAssetWriterInputs.
I read multiple posts in this forum of people saying they were able to accomplish that, but it is not working for ...
25
votes
7answers
3k views
How to generate a guitar note
Back in a freshman software programming class we had to write a program that would simulate the sound of a guitar pluck.
I can make pure sin waves all day, but I am trying to remember how to do a ...
24
votes
4answers
3k views
Getting started with programmatic audio
I'm looking for resources, links, and so on to help get started working programmatically with audio.
Specifically, the platform I'm working with exposes APIs to extract audio data from a resource ...
23
votes
9answers
53k views
Play a Sound with Python
What's the easiest way to play a sound file (.wav) in Python? By easiest I mean both most platform independent and requiring the least dependencies. pygame is certainly an option, but it seems ...
23
votes
5answers
14k views
How to get audio volume level, and volume changed notifications on iOS 4?
I'm writing a very simple application that plays a sound when pressing a button. Since that button does not make a lot of sense when the device is set to silence I want to disable it when the device's ...
23
votes
2answers
23k views
Routing audio to Bluetooth Headset (non-A2DP) on Android
I have a non-A2DP single ear BT headset (Plantronics 510) and would like to use it with my Android HTC Magic to listen to low quality audio like podcasts/audio books.
After much googling I found that ...
22
votes
4answers
5k views
Generating sound on the fly with javascript/html5
Is it possible to generate a constant sound stream with javascript/html? For example, to generate a perpetual sine wave, I would have a callback function, that would be called whenever the output ...
21
votes
14answers
13k views
Algorithm to mix sound
I have two raw sound streams that I need to add together. For the purposes of this question, we can assume they are the same bitrate and bit depth (say 16 bit sample, 44.1khz sample rate).
Obviously ...
21
votes
4answers
43k views
Android - play sound on button click - Null pointer exception
I am trying to play a sound file on the click of a button. The sound is just 1 sec long. It plays well the first few times I click the button, but after a while it gives a NullPointerException. Here's ...
21
votes
4answers
4k views
Guitar Chord Recognition Algorithm?
Whats a good digital signal processing algorithm that is good on guitar chords? Since Fast Fourier Transform I think only is accurate on single notes played on the guitar but not notes that are played ...
21
votes
4answers
12k views
Android OpenAL?
Has anyone built OpenAL for the Android, or found the shared library for it on the system? This seems like an obvious need for a game of any kind, yet there's no resources out there for it. It seems ...
21
votes
5answers
1k views
How to produce precisely-timed tone and silence?
I have a C# project that plays Morse code for RSS feeds. I write it using Managed DirectX, only to discover that Managed DirectX is old and deprecated. The task I have is to play pure sine wave bursts ...
21
votes
2answers
913 views
Android : multiple audio tracks in a VideoView?
I've got some .MP4 video files that must be read in a VideoView in an Android activity. These videos include several audio tracks, with each one corresponding to a user language (eg. : English, ...
20
votes
2answers
10k views
Make movie file with picture Array and song file, using AVAsset
I'm trying to make movie file using a picture array and an audio file. To make movie with a picture array i used the big post by zoul here. All is perfect, I have my movie with my picture. However ...
20
votes
4answers
5k views
iPhone headphone jack - read in data?
I have a small device which connects to a battery powered monitor. When I turn the wheel on the device, the monitor displays information such as when you started turning the wheel and how fast the ...
20
votes
1answer
2k views
Consumer closed input channel or an error occur
I am developing an Android application and it opens MIC source and records the audio from the microphone. I have another separate thread running on background and it clears the ArrayList that holds ...
19
votes
4answers
11k views
Python Sound (“Bell”)
I'd like to have a python program alert me when it has completed its task by making a beep noise. Currently, I use import os and then use a command line speech program to say "Process complete." I ...
19
votes
6answers
25k views
C# Audio Library [closed]
I am looking to develop an audio player in C#, but was wondering what libraries are available for playback. I am looking for a free library that allows for an extensive list of audio formats to be ...