var fDesc=new Array(); fDesc[0] = "Audio Sound Editor for .NET adds sound editing capabilities to multimedia applications and allows accessing and modifying audio data through several features:

- Load/export from sound files in many formats
- Load a sound previously recorded by our Audio Sound Recorder component
- Possibility to load a new sound in "Append mode", "Insert mode", "Mix mode" or "Overwrite mode"
- Possibility to load a specific range of a sound file
- A background sound can be applied to the current editing session, also in loop mode
- Deep analysis at different resolutions of the loaded sound's waveform with rich visualisation capabilities like range selection, zooming and panning
- Edit loaded sound with cut, insert and mixing capabilities
- Insert or remove portions of silence
- Create and apply equalizer bands
- Apply volume modifications: flat volume, sliding volume and volume automation
- Apply DirectX Media Object (DMO) effects
- Apply custom DSP effects: code of DSP effects can be internal to the container application's code or inside external DLLs
- Apply Virtual Studio Technology (VST) effects
- Change Tempo, Playback rate and Pitch
- Play the loaded and edited sound or any portion of the same
- Enumeration of silent portions of sound
- Filter for hiss noise removal
- Filter for clicks and pops removal
- Filter for volume level normalization
- Through integration with Audio DJ Studio, possibility to load the audio track of video clips
- Support for "Append automation", allowing to append several files in one single shot
- Support for "Mixing automation", allowing to mix several files or contents of other instances of the control in one single shot"; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }