<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.msdn.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Getting started with the Expression Encoder Object Model</title><link>http://blogs.msdn.com/expressionencoder/archive/2008/04/22/8418128.aspx</link><description>(UPDATE: This post was written against the Beta of Expression Encoder v2. Now that the RTM version is out we recommend that you install that version and check out the RTM version of this post instead) (This post assume you’ve already installed Expression</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Microsoft news and tips &amp;raquo; Getting started with the Expression Encoder Object Model</title><link>http://blogs.msdn.com/expressionencoder/archive/2008/04/22/8418128.aspx#8418197</link><pubDate>Wed, 23 Apr 2008 08:39:19 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8418197</guid><dc:creator>Microsoft news and tips &amp;raquo; Getting started with the Expression Encoder Object Model</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://microsoftnews.askpcdoc.com/?p=3895"&gt;http://microsoftnews.askpcdoc.com/?p=3895&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Expression Encoder 2 : Encoding For Everyone, including you, you and you!</title><link>http://blogs.msdn.com/expressionencoder/archive/2008/04/22/8418128.aspx#8447925</link><pubDate>Fri, 02 May 2008 03:07:20 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8447925</guid><dc:creator>frankarr - an aussie microsoft blogger</dc:creator><description>&lt;p&gt;I bumped into my good friend Charles Finkelstein today. He was very happy and it wasn't because of his&lt;/p&gt;
</description></item><item><title>  Expression Encoder 2(/API) Audio Limitations - Paul&amp;#039;s Blog - Australian MSP</title><link>http://blogs.msdn.com/expressionencoder/archive/2008/04/22/8418128.aspx#8463067</link><pubDate>Tue, 06 May 2008 17:02:08 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8463067</guid><dc:creator>  Expression Encoder 2(/API) Audio Limitations - Paul&amp;#039;s Blog - Australian MSP</dc:creator><description>&lt;p&gt;PingBack from &lt;a rel="nofollow" target="_new" href="http://www.aeoth.net/blog/2008/05/07/expression-encoder-2api-audio-limitations/"&gt;http://www.aeoth.net/blog/2008/05/07/expression-encoder-2api-audio-limitations/&lt;/a&gt;&lt;/p&gt;
</description></item><item><title>Getting started with the Expression Encoder Object Model (RTM Version)</title><link>http://blogs.msdn.com/expressionencoder/archive/2008/04/22/8418128.aspx#8477847</link><pubDate>Fri, 09 May 2008 09:26:55 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8477847</guid><dc:creator>Expression Encoder</dc:creator><description>&lt;p&gt;This post is an update to the previous Getting started with the Expression Encoder Object Model post,&lt;/p&gt;
</description></item><item><title>re: Getting started with the Expression Encoder Object Model</title><link>http://blogs.msdn.com/expressionencoder/archive/2008/04/22/8418128.aspx#8926297</link><pubDate>Fri, 05 Sep 2008 16:24:40 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8926297</guid><dc:creator>Harjinder</dc:creator><description>&lt;p&gt;I am facing the problem in the following code.&lt;/p&gt;
&lt;p&gt;static void Main(string[] args)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;MediaItem mediaItem = new MediaItem(@&amp;quot;C:\input\video.avi&amp;quot;);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Create a job and the media item for the video we wish &lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// to encode.&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Job job = new Job();&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;job.MediaItems.Add(mediaItem);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Set up the progress callback function&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;job.PublishProgress +=&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;new EventHandler&amp;lt;PublishProgressEventArgs&amp;gt;(OnProgress);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;// Set the output directory and encode.&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;job.OutputDirectory = @&amp;quot;C:\output&amp;quot;;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;job.Encode();&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;}&lt;/p&gt;
&lt;p&gt;job.MediaItems.Add(mediaItem) &lt;/p&gt;
&lt;p&gt;Add( ) method is not avalable on my side please help me&lt;/p&gt;
</description></item><item><title>re: Getting started with the Expression Encoder Object Model</title><link>http://blogs.msdn.com/expressionencoder/archive/2008/04/22/8418128.aspx#8943984</link><pubDate>Thu, 11 Sep 2008 11:51:39 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:8943984</guid><dc:creator>Sergio</dc:creator><description>&lt;p&gt;you have to add &amp;quot;WindowBase&amp;quot; in your references.&lt;/p&gt;
</description></item><item><title>re: Getting started with the Expression Encoder Object Model</title><link>http://blogs.msdn.com/expressionencoder/archive/2008/04/22/8418128.aspx#9128991</link><pubDate>Thu, 20 Nov 2008 16:34:48 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9128991</guid><dc:creator>Edward Moemeka</dc:creator><description>&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt; &amp;nbsp;is there a way to use the api for live encoding?&lt;/p&gt;
</description></item><item><title>re: Getting started with the Expression Encoder Object Model</title><link>http://blogs.msdn.com/expressionencoder/archive/2008/04/22/8418128.aspx#9453612</link><pubDate>Mon, 02 Mar 2009 08:21:53 GMT</pubDate><guid isPermaLink="false">91d46819-8472-40ad-a661-2c78acb4018c:9453612</guid><dc:creator>Suresh</dc:creator><description>&lt;p&gt;Hi friends,&lt;/p&gt;
&lt;p&gt;Can we use Expression Encoder Object Model with PHP and pure ASP.&lt;/p&gt;
&lt;p&gt;Kindly suggest me on this as soon as possible.&lt;/p&gt;
&lt;p&gt;Advance Thanks&lt;/p&gt;
</description></item></channel></rss>