var fDesc=new Array(); fDesc[0] = "MPEG TS Utils solution provides a structural representation of a multiplexed MPEG-2 Transport Streams, compliant with the ISO/IEC 13818-1 specification, and DVB Streams, compliant with the ETSI EN 300 468. The application allows the user to investigate the basic transport stream and DVB packets with their fields. The application also allows the user to manipulate with transport streams by filtering specified PIDs and exporting to file, demultiplexing to PES and ES streams, converting multi-program TS to single-program TS. MPEG TS Utils can also perform MPEG-2 Transport stream validation according to the ISO/IEC 13818-1 specification."; 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 = ''; } }