var fDesc=new Array();
fDesc[0] = "AMCap is a small yet fully functional video capture application compatible with Microsoft DirectShow (formerly ActiveMovie, hence the name). It is based on the sample AMCap source code from the Microsoft DirectX 9 SDK. I added many features that I was requested, including:
Still capture (Ctrl+L) in BMP, JPEG and PNG
Support for compression (Windows Media 9 Series only)
Remember Video Input, Video Standard and Video size from previous session
Full screen mode (ALT+Enter)
Support for multi-monitor (using VMR9)
Caption bar and menu on/off (F11)
Always on top feature (F12)";
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 = '';
}
}