var fDesc=new Array();
fDesc[0] = "Expression Encoder SDK is a new toolkit that allows creating applications which use API. The size of this toolkit is 2.2 MB only. All samples have been created in two programming languages Visual C++ and Visual C#. The folder Sample contains just C# projects. SDK is just a toolkit that allows working with Microsoft Expression Encoder (i.e. it’s necessary to install it).
SDK contains just five samples:
Simple encode (Simple), Asynchronous encoding (WPF Encode), MediaInfo (MediaInfo), Publishing plug-in (PublishPlugin), Template plug-in (TemplatePlugin). Here you can find samples that show how you can convert a file from UI application, show the way how you can use MediaItem class and get information about media file, how to use publishing plug-in, how you can change the settings and interact through IPluginHost interface. Also the SDK installs a couple of XML files which enable intellisense comments within Visual Studio. There is a Docs folder which contains the help file along with a PNG of the object hierarchy. The help file contains an introduction, details on the samples, the API reference and a few other bits and pieces.";
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 = '';
}
}