Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Silverlight audio components

Do you know any good commertial or free audio / sound components that can be used in Silverlight (better on the client)?

Desired features:

  • visualizing (waveform, peakform etc., zoom, editing volume, pan, start and end markers etc.)
  • editing (channels: volume, pan, mute, fading, etc., merge, cut, copy, paste, etc., effects)
  • mixing different sound tracks, creating a downmix
  • exporting result in some in Silverlight usable (compressed) formats

Some useful projects that I've found:

  • Saluse MediaKit for Silverlight (MP3 decoder, AudioPreProcessor, visualizers, effects)

  • Microsoft Design Toolbox sound mixer (incl. source code and video) and Demo

like image 819
Alexander Zwitbaum Avatar asked Nov 05 '22 13:11

Alexander Zwitbaum


1 Answers

I don't know of any tools or libraries that do exactly what you're looking for, but this Silverlight library might be able to help you understand how to implement those features. It is more meant to be used as a sound generator than for editing and mixing, but the principles of controlling volume, panning, and mixing are in the source code:

http://silversynth.codeplex.com/

The library only supports uncompressed, PCM wave audio.

like image 114
kindohm Avatar answered Nov 18 '22 15:11

kindohm