var fDesc=new Array();
fDesc[0] = "SoniqWare releases SG-1, a stereo noise reduction / spectral noise gate plugin with parametric control over noise profile, spectral resolution control and graphical editor.
SoniqWare SG-1 is a professional stereo spectral noise gate packed with high-end features that you will find very useful for most noise reduction needs, including hum, hiss, vinyl, tape, or background noise reduction.
-spectral noise gate / noise reduction
- manual capture of noise profile from audio data
-automatic online noise profile estimation from audio data
-two noise reduction algorithms
-noise profile parametric eq: bias, slope, one low-shelf and two bell filters
-design noise profile from scratch
- noise reduction control range: 0 to 48dB";
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 = '';
}
}