var fDesc=new Array();
fDesc[0] = "OpenDCP is an open source program to create digital cinema packages (DCP) for use in digital cinema.
Main features:
- JPEG2000 encoding from 8/12/16-bit TIFF images
- Supports all major frame rates (24,25,30,48,50,60)
- Cinema 2K and 4K
- MPEG2 MXF
- XYZ color space conversion
- MXF file creation
- SMPTE and MXF Interop
- Full 3D support
- DCP XML file creation
- SMPTE subtitles
- Multithreaded for encoding performance
- XML Digital signatures.";
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 = '';
}
}