Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

9
votes
6answers
1k views

Sound of a rolling ball

I'm looking for the most realistic way of playing sound of a rolling ball. Currently I'm using a Wav sample that I play over and over as long as the ball is moving - which just doesn't feel right. ...
6
votes
2answers
194 views

Has anybody some advice on programming realtime audio synthesis?

I'm currently working on a personal project: creating a library for realtime audio synthesis in Flash. In short: tools to connect wavegenarators, filters, mixers, etc with eachother and supply the ...
3
votes
1answer
77 views

Flash AS3 Software Synthesizer

I've been looking for a software synthesizer in AS3 for quite some time now, but without any success. I'm trying to build a score editor / player in AS3 and I have managed to build (a very crude) one ...
2
votes
1answer
35 views

How to interface Java midi to other applications

Hi I am programming Java on Windows and am very new to working with MIDI interfaces. I have managed to get java to play midi sounds through Synthesizer objects, natively through the computers speaker ...
2
votes
1answer
33 views

what are the technical parameters to generate nokia sms sound?

Does anybody know the specs (or where to find them) for the traditional generic incoming SMS sound on Nokia phones (beep beep ..... beep beep .... )? (frequency, duration, pauses etc). seems, mobile ...
2
votes
2answers
211 views

What's a simple way to output homebrewed synthesized sound on Unix?

I want to do some sound synthesis on Mac OS X (and ideally other Unix-like OS) using ANSI C. This is for learning purposes rather than "I need a solution, any solution, quick!" Say I have an 8-bit ...
1
vote
1answer
55 views

How to properly bend a note in an audio synthesis application?

Problem I'm trying to figure this out for a while to no avail - how to continuously change the pitch of a note between two frequencies. I'm generating the audio signal with a function similar to ...
1
vote
1answer
243 views

How to implement an interpolating delay line and all pass filter with the karplus strong algorithm?

Ok, I've implemented the karplus strong algorithm in C. It's a simple algorithm to simulate a plucked string sound. You start with a ring buffer of length n (n = sampling freq/freq you want), pass it ...
1
vote
1answer
332 views

Realtime sound synthesis libraries---like ChucK or Supercollider, but implemented in, say, Python, for example?

I'm learning ChucK, which has an absolutely beautiful language specification but a really shitty implementation. Supercollider is out of the option due to lack of support/updates for Windows, and ...
1
vote
1answer
246 views

Synthesizing a realistic bounce sound for maze tilt marble game

In considering the design of marble-in-maze games where you tilt the table to get the ball to the end of the maze without going down one of the holes, I wonder whether anyone here has considered the ...
0
votes
1answer
52 views

frequency modulation (FM) code snippet

I've written the following code for frequency modulation of an audio signal. The audio itself is 1 sec long, sampled at 8000 Hz. I want to apply FM to this audio signal by using a sine wave with a ...
0
votes
1answer
95 views

FFT Pitch Detection - Melody Extraction

I am creating a pitch detection program that extracts the fundamental frequency from the power spectrum obtained from the FFT of a frame. This is what I have so far: divide input audio signal into ...
0
votes
1answer
75 views

Generate sounds programmatically

I want to develop a bada application that generate notes when user touches the screen. Is there any way to do that? I remember my old Amstrad CPC 464 had a BASIC instruction, SOUND, to generate ...
0
votes
1answer
95 views

expected unqualified-id before numeric constant in STK code

I included the The Synthesis ToolKit in C++ (STK) from stanford into my project and when I try to build I get the following error: error: expected unqualified-id before numeric constant in the ...
0
votes
1answer
28 views

how to analysis a voice and store the result?

I am thinking to create an application. Following are the description: 1. People will upload previously recorded conversation to the server. 2. application from the server will detect pitch, ...
0
votes
1answer
581 views

Audio synthesis on Android?

I would like to create some instruments for Android using generative audio. I really like SuperCollider, but it doesn't seem to be that far along for Android. Are there any good libraries or ...