19
votes
15answers
861 views
Must-see tech talks/presentations?
There are now several places that offer free audio or video tech talks/presentations online: I'm thinking of Google Tech Talks, IT Conversations, as well as some of the sites recommended in the …
18
votes
9answers
943 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 …
11
votes
9answers
9k 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?
…
11
votes
8answers
918 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?
10
votes
2answers
1k 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 …
9
votes
5answers
311 views
Pitch recognition of musical notes on a smart phone
Hi. With limited resources such as slower CPUs, code size and RAM, how best to detect the pitch of a musical note, similar to what an electronic or software tuner would do?
Should I use:
Kiss FFT
…
9
votes
10answers
1k views
Why would waveOutWrite() cause an exception in the debug heap?
While researching this issue, I found multiple mentions of the following scenario online, invariably as unanswered questions on programming forums. I hope that posting this here will at least serve to …
8
votes
4answers
238 views
Absolute beginners guide to working with audio in C/C++ ?
I've always been curious about audio conversion software, but I have never seen a proper explanation from a beginners point of view as to how to write a simple program that converts for example, a mp3 …
8
votes
4answers
226 views
How to reproduce C64-like sounds?
I did some of my own research and found out that SID-chips had only few hardware supported synthesizing features. Including three audio oscillators with four possible waveforms (sawtooth, triangle, …
8
votes
5answers
646 views
Getting started with audio programming
I'm looking to build some compression interfaces for windows audio, and I was wondering if anybody might know of some tips/tricks? I'd like to build my own software equalizer that will function with …
8
votes
6answers
2k 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 …
8
votes
4answers
1k 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, …
8
votes
11answers
2k 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 …
7
votes
9answers
1k views
How can I make a Pink Noise generator?
((Answer selected - see Edit 5 below.))
I need to write a simple pink-noise generator in C#. The problem is, I've never done any audio work before, so I don't know how to interact with the sound …
7
votes
6answers
1k views
Note onset detection
I am developing a system as an aid to musicians performing transcription. The aim is to perform automatic music transcription (it does not have to be perfect, as the user will correct glitches / …
