var fDesc=new Array();
fDesc[0] = "The most basic operation in Ishmael is viewing a sound by displaying it in a spectrogram and time series. Spectrograms in Ishmael show time on the horizontal axis and frequency on the vertical axis.
Can record sound in the lab and in the field
- Ishmael captures sound on disk in real time
- you set the sampling rate; up to 300 kHz
- sound is stored on disk as a series of sound files
- sound file names can include a time stamp";
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 = '';
}
}