pistacchio
pistacchio

Reputation: 58953

Digital Sound Processing in C# (and possibly SilverLight)

I need to do some basic and non basic DSP programming in C#. At its core, it includes the generation of a sin wave deciding its frequency in Hertz. Then I'd like to Frequency Modulate it and maybe filter it.

Can you suggest any library to help me? Ideally this should also work in a SilverLight environment, as my aim is to showcase a ultra-basic SilverLight synthesizer.

Thanks in advance

Upvotes: 4

Views: 1782

Answers (1)

Ruben Steins
Ruben Steins

Reputation: 2820

You might want to check out a couple of articles by Charles Petzold:

A Simple Silverlight Synthesizer

and

A simple electronice Sequencer in Silverlight

The Oscillator class in the SimpleSequencer project might be what you're looking for.

Upvotes: 4

Related Questions