DirectShowNET: Difference between revisions

From Yggenyk
Jump to navigation Jump to search
(Created page with '==== DirectShowNET Library ==== The purpose of this library is to allow access to Microsoft's DirectShow functionality from within .NET applications. This library supports both V…')
 
No edit summary
Line 8: Line 8:
* [http://blog.monogram.sk/janos/tools/monogram-graphstudio/ GraphStudio]
* [http://blog.monogram.sk/janos/tools/monogram-graphstudio/ GraphStudio]
* [http://www.codeproject.com/KB/audio-video/dsgraphedit.aspx DSGraphEdit: A Reasonable Facsimile of Microsoft's GraphEdit in .NET]
* [http://www.codeproject.com/KB/audio-video/dsgraphedit.aspx DSGraphEdit: A Reasonable Facsimile of Microsoft's GraphEdit in .NET]
==== Fix: How to 'Connect to remote graph...' under Vista and Windows 7 ====
To be able to connect to a remote graph with Graphedit or GrapsStudio, you need to register proppage.dll form the Windows SDK.<br>
The proxy/stub code for many of the DirectShow interfaces has since Vista been moved from quartz.dll to proppage.dll.<br>
If you are running on x64 Windows you need to register both x86 ans x64 version of proppage.dll.<br>
# C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin>regsvr32 proppage.dll
# C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\x64>regsvr32 proppage.dll

Revision as of 11:09, 11 March 2011

DirectShowNET Library

The purpose of this library is to allow access to Microsoft's DirectShow functionality from within .NET applications. This library supports both Visual Basic .NET and C#, and theoretically, should work with any .NET language.


GraphEdit

Fix: How to 'Connect to remote graph...' under Vista and Windows 7

To be able to connect to a remote graph with Graphedit or GrapsStudio, you need to register proppage.dll form the Windows SDK.
The proxy/stub code for many of the DirectShow interfaces has since Vista been moved from quartz.dll to proppage.dll.
If you are running on x64 Windows you need to register both x86 ans x64 version of proppage.dll.

  1. C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin>regsvr32 proppage.dll
  2. C:\Program Files\Microsoft SDKs\Windows\v7.1\Bin\x64>regsvr32 proppage.dll

id=siteTree