Tagged Questions
9
votes
4answers
787 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, ...
6
votes
4answers
83 views
Continuous waveform audio synthesizer
I'm starting to write a soft synthesizer with a peculiar characteristic: The oscillators will have a "continuous waveform" knob that will allow users to select sine, square and saw tooth waves in a ...
4
votes
2answers
95 views
Frequency Modulation Synthesis Algorithm
Based on what I read, I've made an algorithm for FM sound synthesis. I'm not sure if I did it right. When creating a software synth instrument a function is used to generate an oscillator and a ...
4
votes
3answers
327 views
I want to learn audio programming
At my high school we can take a class where we basically learn about a subject on our own for a semester. I was thinking that I want to learn about "sound programming," but I realized that I have no ...
4
votes
5answers
317 views
Sound chords in C#?
I've tried using Console.Beep() at low millisecond rates two play two frequencies 'at once', but the pause between beeps ruins it. I have tried researching it but I've found nothing, and don't know ...
3
votes
2answers
132 views
Sound synthesis with C#
Is there some possibility to generate sounds in C#? I mean not just beep or open and play wave-file. I mean build the signal using different kinds of waves (sin, saw, etc.) and their options ...
3
votes
4answers
767 views
Silverlight and audio synthesis
is it at all possible to generate sound on-the-fly in a Silverlight app and play it? I.e. if I want to play a sine-wave, can I generate a buffer and feed it to some media API?
Cheers
Nik
2
votes
5answers
294 views
How to synthesize sounds of instruments on Android (Piano, Drums, Guitar, etc…)
Can somebody give me some direction on how to synthesize sounds of instruments (Piano, Drums, Guitar, etc...)
I am not even sure what to look for.
Thanks
2
votes
2answers
135 views
Recommended introductory books on sound synthesis
What would be the recommended book to get an introduction to the field of sound synthesis from a programmer's point of view? I'm not looking into doing anything advanced anytime soon, so I'll boil it ...
2
votes
3answers
1k views
How to implement a band-pass filter in c# / Silverlight
How would I go about implementing a band-pass filter in c#? I'm using a custom MediaStreamSource in Silverlight and am using additive synthesis to produce sound. My audio stream is a continuous ...
2
votes
3answers
256 views
Is it possible to play synthesized sound in the browser using JavaScript?
I just came across a Nintendo emulator written entirely in JavaScript on the interwebs, but it doesn't have sound. It got me thinking: Is there any way to synthesize sound in the browser using ...
1
vote
2answers
754 views
How to synthesize piano sounds in android/java
I have made a few simple apps on android, and thought it was time for something a bit more complex. So, i thought I'd try something that's already out there, but build it from scratch.
The idea is to ...
1
vote
3answers
223 views
Audio playback, creating nested loop for fade in/out
First time poster here.
A quick question about setting up a loop here. I want to set up a for loop for the first 1/3 of the main loop that will increase a value from .00001 or similar to 1. So I can ...
0
votes
0answers
40 views
Beating and two-stage decay of the piano sound
I'm working on the mathematically modeled piano synthesizer. Right now I'm using modal based approach, where the sound is formed by a sum of exponentially decaying sinusoids (harmonics).
Right now I ...
0
votes
0answers
153 views
Audio Signal Procesing Programming with STK on Linux
Could someone please give me some guidance as to what do I need to be able to start programming Audio Applications under Linux using the STK C++ library? (or to compile any C++ program in linux to ...
0
votes
2answers
590 views
AS3 additive tone synthesis. playing multiple generated sounds
Inspired by Andre michelle, I`m building a tone matrix in AS3.
I managed to create the matrix and generate the different sounds. They don´t sound that good, but I´m getting there
One big problem I ...