var fDesc=new Array(); fDesc[0] = "MPEG PS Utils provides a structural representation of a multiplexed MPEG-2 program streams, compliant with the ISO/IEC 13818-1 specification. It allows you to investigate the basic program stream packets with their fields. You can also manipulate with program streams by demultiplexing to PES and ES streams.

This program is available in Pro and Ultimate versions. Ultimate version has additional features of AVC/H.264 Video Validation, MPEG-2 Video Validation, AAC Audio Validation, and MPEG Audio Validation Modules."; 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 = ''; } }