var fDesc=new Array();
fDesc[0] = "VocALign Project is an editing tool which will automatically synchronise two audio signals at the touch of a button. It massively speeds up audio synchronisation tasks and increases the quality of results.
Features:
- VocALign Project takes just seconds to automatically align two audio signals so that the timing of one matches the other
- Simple, intuitive operation
- Sophisticated pattern matching techniques that reject guide track noise and work with different speakers, singers, words, instruments and sounds
- Works with 16- and 24-bit audio
- The aligned audio can be auditioned within VocALign Project
- User interface allows adjustment of selected audio regions for processing, and the scrolling, scalable display allows visual confirmation of sync
- User-adjustable processing presets ensure optimal performance
- Pitch of aligned audio is unchanged";
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 = '';
}
}