var fDesc=new Array();
fDesc[0] = "Manzanita MP2TSME is a useful and reliable video toolkit.
Features:
- Insert / extract 608 & 708 closed captioning data into / from an existing video elementary stream
- Trim video elementary streams to start with a sequence header
- Display detailed information about each picture in an input video elementary stream
- Copy specified range of access units from input video elementary stream
- Display detailed information about each access unit in an input audio elementary stream
- Copy specified range of access units from input audio elementary stream
- Insert user private tables in transport packets to create a prepacketized data stream
- Copy specified range of transport packets from input transport stream
- Include integrated Demultiplexer that extracts video and audio elementary streams from existing .MP4 container files, MPEG system, program, VOB, or transport stream files
- Mux DVB subtitles from Spruce STL files, VOBSUB .IDX files, or Scenarist scripts for DVB
- MBatch Utility automates multiplexing of multiple input files, and files that are dynamically generated in a watch folder";
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 = '';
}
}