<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>VideoRendererElement Forum Rss Feed</title><link>http://www.codeplex.com/VideoRendererElement/Thread/List.aspx</link><description>VideoRendererElement Forum Rss Description</description><item><title>New Post: crashed in .Net 4.0</title><link>http://videorendererelement.codeplex.com/discussions/360836</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I've changed target framework to 4.0, recompile it, and, got exceptions...&lt;/p&gt;
&lt;p&gt;Any ideas?&lt;/p&gt;
&lt;/div&gt;</description><author>romanminyaylov</author><pubDate>Mon, 25 Jun 2012 16:51:02 GMT</pubDate><guid isPermaLink="false">New Post: crashed in .Net 4.0 20120625045102P</guid></item><item><title>New Post: Selecting the right webcam resolution</title><link>http://videorendererelement.codeplex.com/discussions/271591</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I was wondering why the capturedevice class of the sample only works with 640x480 resolution of connected webcams. I found that overwriting the BMIHeader of the VideoStreamConfig structure of the media format you from GetFormat is not working. So I extended
 the SetConfigParms method &amp;nbsp;in following way: Instead of using GetFormat to retriev the media structure I enum all possible formats (VideoStreamConfig.GetNumberOfCapabilities and VideoStreamConfig.GetStreamCaps), select the media format I want to use and
 write this structure back.&lt;/p&gt;
&lt;p&gt;Here is the method extended SetConfigParms&amp;nbsp;(sorry I translated the whole class to vb.net)&amp;nbsp;&lt;/p&gt;
&lt;div style="color:black; background-color:white"&gt;
&lt;pre&gt;    &lt;span style="color:green"&gt;' Set the Framerate, and video size&lt;/span&gt;
    &lt;span style="color:blue"&gt;Private&lt;/span&gt; &lt;span style="color:blue"&gt;Sub&lt;/span&gt; SetConfigParms(&lt;span style="color:blue"&gt;ByVal&lt;/span&gt; capGraph &lt;span style="color:blue"&gt;As&lt;/span&gt; ICaptureGraphBuilder2, &lt;span style="color:blue"&gt;ByVal&lt;/span&gt; capFilter &lt;span style="color:blue"&gt;As&lt;/span&gt; IBaseFilter, &lt;span style="color:blue"&gt;ByVal&lt;/span&gt; iFrameRate &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;Integer&lt;/span&gt;, &lt;span style="color:blue"&gt;ByVal&lt;/span&gt; iWidth &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;Integer&lt;/span&gt;, &lt;span style="color:blue"&gt;ByVal&lt;/span&gt; iHeight &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;Integer&lt;/span&gt;)
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; hr &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;Integer&lt;/span&gt;
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; o &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;Object&lt;/span&gt;
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; media &lt;span style="color:blue"&gt;As&lt;/span&gt; AMMediaType
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; FoundFormat &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;Boolean&lt;/span&gt;
        &lt;span style="color:green"&gt;' Find the stream config interface&lt;/span&gt;
        hr = capGraph.FindInterface(PinCategory.Capture, MediaType.Video, capFilter, &lt;span style="color:blue"&gt;GetType&lt;/span&gt;(IAMStreamConfig).GUID, o)
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; videoStreamConfig &lt;span style="color:blue"&gt;As&lt;/span&gt; IAMStreamConfig = &lt;span style="color:blue"&gt;CType&lt;/span&gt;(o, IAMStreamConfig)

        &lt;span style="color:blue"&gt;If&lt;/span&gt; (videoStreamConfig &lt;span style="color:blue"&gt;Is&lt;/span&gt; &lt;span style="color:blue"&gt;Nothing&lt;/span&gt;) &lt;span style="color:blue"&gt;Then&lt;/span&gt;
            &lt;span style="color:blue"&gt;Throw&lt;/span&gt; &lt;span style="color:blue"&gt;New&lt;/span&gt; Exception(&lt;span style="color:#a31515"&gt;&amp;quot;Failed to get IAMStreamConfig&amp;quot;&lt;/span&gt;)
        &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;If&lt;/span&gt;


        &lt;strong&gt;&lt;span style="color:blue"&gt;Dim&lt;/span&gt; iCount &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;Integer&lt;/span&gt; = 0, iSize &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;Integer&lt;/span&gt; = 0
        videoStreamConfig.GetNumberOfCapabilities(iCount, iSize)
        &lt;span style="color:blue"&gt;Dim&lt;/span&gt; pmtConfig &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;New&lt;/span&gt; AMMediaType
        &lt;span style="color:blue"&gt;For&lt;/span&gt; iFormat &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;Integer&lt;/span&gt; = 0 &lt;span style="color:blue"&gt;To&lt;/span&gt; iCount - 1
            &lt;span style="color:blue"&gt;Dim&lt;/span&gt; scc &lt;span style="color:blue"&gt;As&lt;/span&gt; &lt;span style="color:blue"&gt;New&lt;/span&gt; VideoStreamConfigCaps, pScc &lt;span style="color:blue"&gt;As&lt;/span&gt; IntPtr = Marshal.AllocHGlobal(Marshal.SizeOf(scc))

            hr = videoStreamConfig.GetStreamCaps(iFormat, pmtConfig, pScc)
            DsError.ThrowExceptionForHR(hr)
            Marshal.PtrToStructure(pScc, scc)

            &lt;span style="color:green"&gt;'' copy out the videoinfoheader&lt;/span&gt;
            &lt;span style="color:blue"&gt;Dim&lt;/span&gt; header &lt;span style="color:blue"&gt;As&lt;/span&gt; VideoInfoHeader = &lt;span style="color:blue"&gt;New&lt;/span&gt; VideoInfoHeader
            Marshal.PtrToStructure(pmtConfig.formatPtr, header)

            &lt;span style="color:green"&gt;''Examine the format, and possibly use it. &lt;/span&gt;
            &lt;span style="color:blue"&gt;If&lt;/span&gt; pmtConfig.subType = MediaSubType.RGB24 &lt;span style="color:blue"&gt;Then&lt;/span&gt;
                Debug.Print(&lt;span style="color:#a31515"&gt;&amp;quot;iFormat: &amp;quot;&lt;/span&gt; &amp;amp; header.BmiHeader.Width &amp;amp; &lt;span style="color:#a31515"&gt;&amp;quot;x&amp;quot;&lt;/span&gt; &amp;amp; header.BmiHeader.Height)
                &lt;span style="color:blue"&gt;If&lt;/span&gt; header.BmiHeader.Width = iWidth &lt;span style="color:blue"&gt;And&lt;/span&gt; header.BmiHeader.Height = iHeight &lt;span style="color:blue"&gt;Then&lt;/span&gt;
                    &lt;span style="color:blue"&gt;If&lt;/span&gt; (iFrameRate &amp;gt; 0) &lt;span style="color:blue"&gt;Then&lt;/span&gt;
                        &lt;span style="color:green"&gt;'header.AvgTimePerFrame = (10000000 / iFrameRate)&lt;/span&gt;
                    &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;If&lt;/span&gt;
                    hr = videoStreamConfig.SetFormat(pmtConfig)
                    DsError.ThrowExceptionForHR(hr)
                    FoundFormat = &lt;span style="color:blue"&gt;True&lt;/span&gt;
                &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;If&lt;/span&gt;
            &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;If&lt;/span&gt;

            &lt;span style="color:green"&gt;''Delete the media type when you are done.&lt;/span&gt;
            Marshal.DestroyStructure(pScc, &lt;span style="color:blue"&gt;GetType&lt;/span&gt;(VideoStreamConfigCaps))
            Marshal.DestroyStructure(pmtConfig.formatPtr, &lt;span style="color:blue"&gt;GetType&lt;/span&gt;(VideoInfoHeader))
            DsUtils.FreeAMMediaType(pmtConfig)
            pmtConfig = &lt;span style="color:blue"&gt;Nothing&lt;/span&gt;
            header = &lt;span style="color:blue"&gt;Nothing&lt;/span&gt;
            scc = &lt;span style="color:blue"&gt;Nothing&lt;/span&gt;

        &lt;span style="color:blue"&gt;Next&lt;/span&gt;

&lt;/strong&gt;        &lt;span style="color:blue"&gt;If&lt;/span&gt; &lt;span style="color:blue"&gt;Not&lt;/span&gt; FoundFormat &lt;span style="color:blue"&gt;Then&lt;/span&gt;
            &lt;span style="color:green"&gt;' Get the existing format block&lt;/span&gt;
            hr = videoStreamConfig.GetFormat(media)
            DsError.ThrowExceptionForHR(hr)
            &lt;span style="color:green"&gt;' copy out the videoinfoheader&lt;/span&gt;
            &lt;span style="color:blue"&gt;Dim&lt;/span&gt; v &lt;span style="color:blue"&gt;As&lt;/span&gt; VideoInfoHeader = &lt;span style="color:blue"&gt;New&lt;/span&gt; VideoInfoHeader
            Marshal.PtrToStructure(media.formatPtr, v)
            &lt;span style="color:green"&gt;' if overriding the framerate, set the frame rate&lt;/span&gt;
            &lt;span style="color:blue"&gt;If&lt;/span&gt; (iFrameRate &amp;gt; 0) &lt;span style="color:blue"&gt;Then&lt;/span&gt;
                v.AvgTimePerFrame = (10000000 / iFrameRate)
            &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;If&lt;/span&gt;
            &lt;span style="color:green"&gt;' if overriding the width, set the width&lt;/span&gt;
            &lt;span style="color:blue"&gt;If&lt;/span&gt; (iWidth &amp;gt; 0) &lt;span style="color:blue"&gt;Then&lt;/span&gt;
                v.BmiHeader.Width = iWidth
            &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;If&lt;/span&gt;
            &lt;span style="color:green"&gt;' if overriding the Height, set the Height&lt;/span&gt;
            &lt;span style="color:blue"&gt;If&lt;/span&gt; (iHeight &amp;gt; 0) &lt;span style="color:blue"&gt;Then&lt;/span&gt;
                v.BmiHeader.Height = iHeight
            &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;If&lt;/span&gt;
            &lt;span style="color:green"&gt;' Copy the media structure back&lt;/span&gt;
            Marshal.StructureToPtr(v, media.formatPtr, &lt;span style="color:blue"&gt;False&lt;/span&gt;)
            &lt;span style="color:green"&gt;' Set the new format&lt;/span&gt;
            hr = videoStreamConfig.SetFormat(media)
            DsError.ThrowExceptionForHR(hr)
            DsUtils.FreeAMMediaType(media)
            media = &lt;span style="color:blue"&gt;Nothing&lt;/span&gt;
        &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;If&lt;/span&gt;
    &lt;span style="color:blue"&gt;End&lt;/span&gt; &lt;span style="color:blue"&gt;Sub&lt;/span&gt;

Whith that enum it's also very easy to examin the possible resolutions of a webcam.&lt;/pre&gt;
&lt;pre&gt;SvenWS&lt;/pre&gt;
&lt;/div&gt;
&lt;/div&gt;</description><author>SvenWS</author><pubDate>Tue, 06 Sep 2011 07:44:29 GMT</pubDate><guid isPermaLink="false">New Post: Selecting the right webcam resolution 20110906074429A</guid></item><item><title>New Post: Compatibility problems</title><link>http://videorendererelement.codeplex.com/discussions/268263</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I have successfully registered the .ax file both on my netbook(Win7 Starter) and my desktop machine (Win7 Ultimate), but the VideoRendererElement refuses to work on my netbook. What could be the problem?&lt;/p&gt;
&lt;/div&gt;</description><author>laci37</author><pubDate>Mon, 08 Aug 2011 18:29:34 GMT</pubDate><guid isPermaLink="false">New Post: Compatibility problems 20110808062934P</guid></item><item><title>New Post: Playing videos in sync</title><link>http://videorendererelement.codeplex.com/Thread/View.aspx?ThreadId=240284</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;I have the following requirement: there are 3 videos which have to be played&amp;nbsp;synchronously. (e.g a classical concert with 3 perspectives for&amp;nbsp;conductor,&amp;nbsp;orchestra and&amp;nbsp;soloist)&lt;/p&gt;
&lt;p&gt;With the default WPF MedialElement it seems this is not possible to be in sync.&lt;/p&gt;
&lt;p&gt;So my question: is it possible to achieve this with &amp;quot;VideoRendererElement&amp;quot;? &amp;nbsp;Does anybody know a solution for my problem?&lt;/p&gt;
&lt;p&gt;Any help would be welcome.&lt;/p&gt;
&lt;p&gt;TIA&lt;/p&gt;
&lt;p&gt;Regards&lt;/p&gt;
&lt;p&gt;Martin&lt;/p&gt;
&lt;/div&gt;</description><author>makuat</author><pubDate>Mon, 03 Jan 2011 17:09:03 GMT</pubDate><guid isPermaLink="false">New Post: Playing videos in sync 20110103050903P</guid></item><item><title>New Post: Problem loading the designer</title><link>http://videorendererelement.codeplex.com/Thread/View.aspx?ThreadId=226833</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Dear all,&lt;/p&gt;
&lt;p&gt;I have a problem loading the designer due to assembly 'VideoRendererElement' was not found. Any suggestion on how to solve that?&lt;/p&gt;
&lt;p&gt;Besides, I wonder how can I make the live images without reflection? I am not good in programming, but I guess is changing the pixel accessed. I will be grateful if there is a guide or advice on how I can achieve that.&lt;/p&gt;
&lt;p&gt;Any suggestions are welcomed. Thank you in advance.&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>eileenkho</author><pubDate>Sat, 11 Sep 2010 02:02:48 GMT</pubDate><guid isPermaLink="false">New Post: Problem loading the designer 20100911020248A</guid></item><item><title>New Post: Image capture of video</title><link>http://videorendererelement.codeplex.com/Thread/View.aspx?ThreadId=223175</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Is it possible to capture an image of the live video stream?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>sevententh</author><pubDate>Wed, 11 Aug 2010 08:38:15 GMT</pubDate><guid isPermaLink="false">New Post: Image capture of video 20100811083815A</guid></item><item><title>New Post: Image caption of video</title><link>http://videorendererelement.codeplex.com/Thread/View.aspx?ThreadId=223174</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;Is it possible to capture an image of the live video stream?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>sevententh</author><pubDate>Wed, 11 Aug 2010 08:37:46 GMT</pubDate><guid isPermaLink="false">New Post: Image caption of video 20100811083746A</guid></item><item><title>New Post: Internet connection required?</title><link>http://videorendererelement.codeplex.com/Thread/View.aspx?ThreadId=211544</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;It seems that the VideoRendererElement won't initialize properly if my computer does not have an internet connection.&amp;nbsp; It just quietly fails (no exceptions or anything) and the RendererInitialized event never occurs.&amp;nbsp; Has anyone else seen this?!&amp;nbsp; Does it have to do with the online XAML schemas or something?&amp;nbsp; We need to deploy our application on offline computers...what do I do?&lt;/p&gt;&lt;/div&gt;</description><author>jgarrets</author><pubDate>Tue, 04 May 2010 16:44:31 GMT</pubDate><guid isPermaLink="false">New Post: Internet connection required? 20100504044431P</guid></item><item><title>New Post: MPEG-2 on VideoRendererElement</title><link>http://videorendererelement.codeplex.com/Thread/View.aspx?ThreadId=208858</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Hi,&lt;/p&gt;
&lt;p&gt;i have an MPEG-2 Demux and MPEG-2 Decoder in my Graph.&lt;/p&gt;
&lt;p&gt;[DVB Source] --&amp;gt; [Demux] --&amp;gt; [Decoder] --&amp;gt; [Video Renderer]&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Any idea how to put my SampleGrabber between decoder and renderer?&lt;/p&gt;
&lt;p&gt;Or any other idea how to render this graph onto the VideoRenderElement?&lt;/p&gt;
&lt;p&gt;Decoder output type is DXVA and SampleGrabber cannot connect.&lt;/p&gt;
&lt;p&gt;I would be grateful for any ideas..&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>wookie_rookie</author><pubDate>Fri, 09 Apr 2010 18:37:05 GMT</pubDate><guid isPermaLink="false">New Post: MPEG-2 on VideoRendererElement 20100409063705P</guid></item><item><title>New Post: Deployment</title><link>http://videorendererelement.codeplex.com/Thread/View.aspx?ThreadId=67487</link><description>&lt;div style="line-height: normal;"&gt;&lt;div style="color:Black;background-color:White"&gt;
&lt;pre&gt;&lt;div style="color:Black;background-color:White"&gt;&lt;pre&gt;This seems to work:&lt;br&gt;&lt;br&gt;&lt;div style="color:Black;background-color:White"&gt;&lt;pre&gt;                Assembly assembly = Assembly.GetExecutingAssembly();
                Stream stream = assembly.GetManifestResourceStream(&lt;span style="color:#A31515"&gt;&amp;quot;MyApp.Resources.DShowMediaBridge.ax&amp;quot;&lt;/span&gt;); &lt;span style="color:Green"&gt;// or whatever&lt;/span&gt;
                BinaryReader br = &lt;span style="color:Blue"&gt;new&lt;/span&gt; BinaryReader(stream);
                &lt;span style="color:Blue"&gt;string&lt;/span&gt; destPath = AppDomain.CurrentDomain.BaseDirectory + &lt;span style="color:#A31515"&gt;&amp;quot;\\DShowMediaBridge.ax&amp;quot;&lt;/span&gt;;
                FileStream fs = &lt;span style="color:Blue"&gt;new&lt;/span&gt; FileStream(destPath, FileMode.Create);
                BinaryWriter bw = &lt;span style="color:Blue"&gt;new&lt;/span&gt; BinaryWriter(fs);
                &lt;span style="color:Blue"&gt;byte&lt;/span&gt;[] ba = &lt;span style="color:Blue"&gt;new&lt;/span&gt; &lt;span style="color:Blue"&gt;byte&lt;/span&gt;[stream.Length];
                stream.Read(ba, 0, ba.Length);
                bw.Write(ba);
                br.Close();
                bw.Close();
                fs.Close();
                stream.Close();
                Process.Start(&lt;span style="color:#A31515"&gt;&amp;quot;regsvr32.exe&amp;quot;&lt;/span&gt;, &lt;span style="color:#A31515"&gt;&amp;quot;/s &amp;quot;&lt;/span&gt; + &lt;span style="color:#A31515"&gt;&amp;quot;DShowMediaBridge.ax&amp;quot;&lt;/span&gt;); &lt;span style="color:Green"&gt;// register dll silently'&lt;/span&gt;
&lt;/pre&gt;
&lt;/div&gt;
&lt;/pre&gt;
&lt;/div&gt;
Basically, I add the .ax file as a resource in my project with a build action of &amp;quot;Embedded Resource.&amp;quot;  The above code pulls it out of the assembly at run-time, writes it to disk, and then registers it with regsvr32.&lt;br&gt;I run this &amp;quot;on-load&amp;quot; and it seems to be working.&lt;br&gt;&lt;br&gt;Anybody know what to do about the &amp;quot;tearing&amp;quot; effects and the line of &amp;quot;noise&amp;quot; along the bottom of the video?  Is anybody else seeing that?&lt;/pre&gt;
&lt;/div&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;&lt;/div&gt;</description><author>jgarrets3</author><pubDate>Thu, 03 Sep 2009 16:03:28 GMT</pubDate><guid isPermaLink="false">New Post: Deployment 20090903040328P</guid></item><item><title>New Post: Deployment</title><link>http://videorendererelement.codeplex.com/Thread/View.aspx?ThreadId=67487</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;If I deploy an application that used VideoRendererElement, will the end-user have to do the &amp;quot;register DShowMediaBridge.ax with regsvr32&amp;quot; thing?&amp;nbsp; That wouldn't be cool...&lt;/p&gt;&lt;/div&gt;</description><author>jgarrets3</author><pubDate>Mon, 31 Aug 2009 15:55:50 GMT</pubDate><guid isPermaLink="false">New Post: Deployment 20090831035550P</guid></item><item><title>New Post: Lib not work and Example</title><link>http://videorendererelement.codeplex.com/Thread/View.aspx?ThreadId=40855</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;Install Windows Media Player 11, its an issue of MediaElement, of the WPF!&lt;/p&gt;&lt;/div&gt;</description><author>soulkata</author><pubDate>Wed, 12 Aug 2009 18:27:31 GMT</pubDate><guid isPermaLink="false">New Post: Lib not work and Example 20090812062731P</guid></item><item><title>New Post: Lib not work and Example</title><link>http://www.codeplex.com/VideoRendererElement/Thread/View.aspx?ThreadId=40855</link><description>&lt;div style="line-height: normal;"&gt;I'm having the same issue.&amp;nbsp; Did you ever find the problem?&lt;br&gt;
&lt;/div&gt;</description><author>jgarrets</author><pubDate>Mon, 12 Jan 2009 16:17:41 GMT</pubDate><guid isPermaLink="false">New Post: Lib not work and Example 20090112041741P</guid></item><item><title>New Post: Possible to use with Windows Media Encoder?</title><link>http://www.codeplex.com/VideoRendererElement/Thread/View.aspx?ThreadId=42132</link><description>&lt;div style="line-height: normal;"&gt;Hi!&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I wonder if it's possible to use this code to be able to preview a capture using wme?&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;For additional information see: &lt;a href="http://stackoverflow.com/questions/280604/how-do-i-preview-a-windows-media-encoder-session-in-wpf"&gt;http://stackoverflow.com/questions/280604/how-do-i-preview-a-windows-media-encoder-session-in-wpf&lt;/a&gt;&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Thanks&lt;/div&gt;&lt;/div&gt;</description><author>loraderon</author><pubDate>Fri, 12 Dec 2008 13:28:56 GMT</pubDate><guid isPermaLink="false">New Post: Possible to use with Windows Media Encoder? 20081212012856P</guid></item><item><title>New Post: Lib not work and Example</title><link>http://www.codeplex.com/VideoRendererElement/Thread/View.aspx?ThreadId=40855</link><description>&lt;div style="line-height: normal;"&gt;I &amp;quot;&lt;span id="ctl00_ctl00_MasterContent_Content_ReleasePanelOrderingContainer_ReleaseDescriptionLiteral"&gt;&lt;strong&gt;register &lt;span style="text-decoration:underline"&gt;DShowMediaBridge.ax&lt;/span&gt; with regsvr32&lt;/strong&gt;&lt;/span&gt;&amp;quot;&lt;br&gt;
&lt;br&gt;
WinXP Sp3 - .net 3.5 sp1 - vs 2008&lt;br&gt;
&lt;br&gt;
BUT example not work(black panel in window) ((( Why?
&lt;/div&gt;</description><author>bernex</author><pubDate>Wed, 26 Nov 2008 11:56:21 GMT</pubDate><guid isPermaLink="false">New Post: Lib not work and Example 20081126115621A</guid></item><item><title>New Post: Does anyone saw a working example of Video Files or DVDs? </title><link>http://www.codeplex.com/VideoRendererElement/Thread/View.aspx?ThreadId=32283</link><description>&lt;div style="line-height: normal;"&gt;So is anybody going to answer any of these Discussions?&lt;br&gt;
&lt;br&gt;
Well with that in mind I also would like an example of playing a video file using the VideoRendererElement.&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
Dan&lt;br&gt;
&lt;/div&gt;</description><author>jackdan0921</author><pubDate>Sat, 25 Oct 2008 04:27:32 GMT</pubDate><guid isPermaLink="false">New Post: Does anyone saw a working example of Video Files or DVDs?  20081025042732A</guid></item><item><title>New Post: Copy Web Cam Output</title><link>http://www.codeplex.com/VideoRendererElement/Thread/View.aspx?ThreadId=36626</link><description>&lt;div style="line-height: normal;"&gt;I like this project alot, but only have dug around in it lightly. My goal is to take the output of a web cam and send it to a Web service that will return it as a byte[] to a completely different listener application. I don't fully understand how to retrieve the output from the IntPtr and send it to a method on a ASP web service. &lt;br&gt;
&lt;br&gt;
Can you help me understand how to copy the output to a method parameter on a web service? What are the conversion specifics about the output of the webcam through VideoRendererElements?&lt;br&gt;
&lt;br&gt;
Thanks in advance.&lt;br&gt;
&lt;br&gt;
John Maloney
&lt;/div&gt;</description><author>maloney1</author><pubDate>Mon, 29 Sep 2008 04:55:05 GMT</pubDate><guid isPermaLink="false">New Post: Copy Web Cam Output 20080929045505A</guid></item><item><title>New Post: Needed Prerequistes</title><link>http://www.codeplex.com/VideoRendererElement/Thread/View.aspx?ThreadId=25411</link><description>&lt;div style="line-height: normal;"&gt;Hmmm...&lt;br&gt;
&lt;br&gt;
And after some futzing to get strmbase.lib in place, I've got everything building cleanly from scratch -- I think -- but now I'm getting a System.Deployment.Application.InvalidDeploymentException from m_mediaElement.Play().&amp;nbsp; The prebuilt binary does work for me, though, so it's clearly a misconfiguration somewhere in my code...&lt;br&gt;
&lt;br&gt;
-mpg&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>mpg</author><pubDate>Sat, 30 Aug 2008 21:40:15 GMT</pubDate><guid isPermaLink="false">New Post: Needed Prerequistes 20080830094015P</guid></item><item><title>New Post: Needed Prerequistes</title><link>http://www.codeplex.com/VideoRendererElement/Thread/View.aspx?ThreadId=25411</link><description>&lt;div style="line-height: normal;"&gt;Hmm.&lt;br&gt;
&lt;br&gt;
At least on my system, I needed to put the includes jmorrill refers to in this order:&lt;br&gt;
&lt;br&gt;
&amp;nbsp; C:\Program Files\Microsoft SDKs\Windows\v6.0\Samples\Multimedia\DirectShow\BaseClasses&lt;br&gt;
&amp;nbsp; C:\Program Files\Microsoft SDKs\Windows\v6.0\Include&lt;br&gt;
&lt;br&gt;
If they're switched, you can get the wrong Schedule.h....&lt;br&gt;
&lt;br&gt;
-mpg&lt;br&gt;
&lt;br&gt;
&lt;/div&gt;</description><author>mpg</author><pubDate>Sat, 30 Aug 2008 21:08:16 GMT</pubDate><guid isPermaLink="false">New Post: Needed Prerequistes 20080830090816P</guid></item><item><title>New Post: Simple Webcam Sample?</title><link>http://www.codeplex.com/VideoRendererElement/Thread/View.aspx?ThreadId=34393</link><description>&lt;div style="line-height: normal;"&gt;I'm trying to get a simple sample to work with the latest source code and can't get one working. Can someone post a simple sample code of VRE working with a webcam connected? The sample project included keeps throwing a generic error of&amp;nbsp; ComException &amp;quot;-2147467259&amp;quot; on line 147 of CaptureDevice.cs that I've tried to figure out for hours now....&lt;br&gt;
&lt;br&gt;
Thanks,&lt;br&gt;
James
&lt;/div&gt;</description><author>jameschi</author><pubDate>Wed, 27 Aug 2008 17:33:58 GMT</pubDate><guid isPermaLink="false">New Post: Simple Webcam Sample? 20080827053358P</guid></item></channel></rss>