Tagged Questions
0
votes
2answers
67 views
Get iplImage or Mat from directshow to opencv
I had to change to directshow for my eyetracking software due to the difficulties to change resolution of the camera when using c++ and opencv.
Directshow is new to me and it is kind of hard to ...
1
vote
2answers
158 views
Loading IFilterGraph from .GRF file with IPersistStream::Load fails to instantiate private in-process filters registered with CoRegisterClassObject
Loading Directshow IFilterGraphs from GRF files in the application works fine for normal filters which are registered globally in DLLs.
// open structured storage file...
hr = ...
0
votes
1answer
148 views
How to display QWidget above data stream from device handled by external library
I'm creating application to analyze data from a device and displaying it on the screen. SDK to handling this device have function to display current frame of data in specific Window by setting window ...
1
vote
1answer
314 views
What is Microsoft Media Foundation's equivalent of Directshow's custom video filters?
In the same way where we can make custom directshow filters to make a virtual cam/mic (and then select this virtual cam in another program like skype for example), what would be the equivalent to that ...
1
vote
1answer
57 views
Seeking within different streams in DirectShow
In an application which I develop I play several layers of video using VMR9. The problem is that I need to be able to navigate within each video stream independently.
Has anyone implemented something ...
2
votes
1answer
380 views
Using DirectShow c++'s API with C# (COM component)
I am developing a Windwos form application using Directshow.
At start I was using Quarts.dll located in windows/system32 in purpose of getting the basic API of Directshow.
After a while I realized I ...
2
votes
1answer
142 views
Unreleased DirectShow CSource filter makes program crash at process shutdown
I'm developing a DirectShow CSource capture filter. It works fine, but when I close the program that is using the filter (in this case I'm testing with VLC, but the same happens with other programs), ...
1
vote
2answers
293 views
Pass .NET Bitmap object to COM (DirectShow filter)
I'm trying to create a source filter that makes a live video stream based on a sequence of pictures.
To do this, I make an interface of IUnknown:
[ComImport, ...
0
votes
1answer
95 views
What COM support is needed to get my custom DirectShow filter property page to work for a remote filter from the Running Object Table
I have some custom DirectShow filters with custom property pages. These work fine when the filter is in the same process as the property page.
However when I use the 'connect to remote graph' feature ...
0
votes
1answer
536 views
How to properly use CComPtr in function calls?
I'm new to COM and smartpointers, I'm trying to convert a project from raw pointers to CComPtr to avoid the hassle with memory management. I'm looking for some advice on how to properly use ...
0
votes
1answer
345 views
Can't include DirectShow sample and compile it (PushSourceDesktop)
So I'm trying to compile the PushSourceDesktop sample with my other project so I can use the 'new' keyword to make an object directly without loading an external dll. I've included all the files in my ...
1
vote
1answer
311 views
DirectShow code crashes after exit (PushSourceDesktop sample)
I'm trying to use the Desktop capture filter that comes with the SDK (PushSourceDesktop). I compiled it and seem to use it successfully as it actually captures my desktop and saves it to a file. But ...
0
votes
1answer
444 views
How to render and save captured Video/Audio into a custom file/filter format in DirectShow?
Basiclly, I want to capture audio/video. Run it through a mp4 muxer and save it to a file on disk. Before I used ICaptureGraphBuilder2, but it seems unusuable when saving to custom formats.
My code ...
4
votes
1answer
1k views
Using a DirectShow filter without registering it, via a private CoCreateInstance
So basiclly I read this, http://www.gdcl.co.uk/2011/June/UnregisteredFilters.htm.
Which tells you how to use filters without registering them. There are two methods, new and using a private ...
1
vote
1answer
76 views
Is it possible to have one application configure and manage a DirectShow filter but have the output pin bound to a different application?
I'm new to direct show and I'm wondering if this is possible (any additional help to finding a solution would also be nice but I'm more worried about if this is worth pursing).
I am creating a ...
1
vote
2answers
165 views
Why COM classes need constructor? How to use COM class without registration?
I am looking into DirectShow samples from Windows SDK. Many of the classes feature non-default constructor. How those constructors are called? Who supplies arguments?
Can I use those classes in C++ ...
0
votes
1answer
349 views
Getting error “The owner SID on a per-user subscription doesn't exist ” in DXVA2 but not in DXVAHD while calling ConnectDirect() MSFT API.
I am getting the error "The owner SID on a per-user subscription doesn't exist " in the return value "hr" when I call:
hr = pGraph->ConnectDirect(pOut, pIn, NULL);
I get this error only when I ...
1
vote
2answers
493 views
I want to learn DirectShow & MediaFoundation programming right from basics. Help needed on learning resources (Website links, etc..)
I want to learn DirectShow & MediaFoundation programming right from basics. Help needed on training resources (Website links, etc..).
What all prerequisites should one have to start with ...
1
vote
1answer
189 views
Can I make my private DirectShow filter discoverable by Moniker by external programs?
This is a long shot but if I could do this it would save me time and a hassle. I have a DirectShow video filter that is a typical external DLL (AX file) that feeds video to Skype. I already know how ...
1
vote
4answers
269 views
Is there a clean way of handling bad_alloc exceptions thrown inside C++ COM objects?
I'm working on various C++ COM DirectShow filters called from C# clients via COM interop. There's little use of C++ exceptions in the code. The main exception is operator new which can throw bad_alloc ...
0
votes
1answer
451 views
Expose a directshow filter property example with program AND filter sourcecode
I'm trying to find an example where a parameter that could be controlled through the filter property page has an exposed getter/setter so that, without loading the property page, the filter property ...
1
vote
1answer
86 views
Is there any method of accessing a remote filter graph without registering proppage.dll on Windows Vista+?
I'm currently attempting to developing a small application / dll that will read a remote directshow filter graph and glean information from it for display in a "now playing" style plugin or script. ...
0
votes
2answers
392 views
How do I discover properties of an IPropertyBag?
Besides a dictionary attack, what can I do?
I'm trying to find out what properties do DirectShow filters have. I know one of the properties is FriendlyName (that's the only one MSDN mentions), so I ...
1
vote
1answer
700 views
directshow “Color Space Converter” filter configuration problem (VMR windowless renderer)
I'm using VMR to mix a bitmap with a video stream. I run the renderer in windowless mode.
Since I need to have more than 1 stream on the renderer, I add the renderer to the graph first and then use ...
3
votes
2answers
278 views
Deleting DirectShow Filters (Destructor not called)
I have built a custom DirectShow filter that implements CSource such as
class Myfilter : public CSource
{
~MyFilter(){ delete everything;}
}
When I use this filter in GraphStudio, I can delete ...
2
votes
1answer
580 views
Directshow filter access threading
I made a TV-Player in c# using directshowlib-2005.
now I made a method to search for available channels.
I want this method to run in a different thread so my GUI won't freeze, but I get an error ...
1
vote
1answer
385 views
Adding the same filter multiple times to a DirectShow Graph
the problem I have is a bit difficult to explain without first explaining what I'm trying to do so I will start with that. I'm trying to grab samples from multiple video streams using the Sample ...
1
vote
1answer
611 views
Good techniques for keeping COM classes that implement multiple interfaces manageable
COM objects that implement many interfaces can end up suffering from the god object anti-pattern or end up full of tedious forwarding code:
class MyCOMClass
, public CUnknown
, public IFoo
...
0
votes
1answer
184 views
Directshow and .NET Interop issue
I am facing a strange issue. I have a directshow based player that is wrapped as a COM object.
I use this player in a C# form. Actually two instances so that two clips can be played side by side.
...
0
votes
2answers
553 views
DirectShow decoders dropping media time
In DirectShow, a media sample has two time-related properties: its time stamp and its media time. My application needs to seek to specific frames within a video and thus requires the media time. As it ...
4
votes
3answers
889 views
Create COM object from file without regsvr32
Is it possible to create an instance of a COM object with just the dll and no regsvr32?
My main goal here is to create an instance of a directshow filter and insert it into my graph-but I don't want ...
2
votes
4answers
913 views
C++ and DirectShow
I'm just getting started with DirectShow programming, and the 'C' nature of the DirectShow API is making my skin crawl. Endless return codes instead of exceptions, addref/release all over the place, ...
0
votes
1answer
242 views
DirectShow Source Filter
I have created directShow Source filter, it tested on Win32, and works fine.
But when I port them on windows Mobile 6.5.3
After calling CoCreateInstance(MyfilterGUID),
I have such:
hr 0x8007007e ...
4
votes
1answer
2k views
How to get pointer to IUnknown in C#
.NET interop wraps COM objects into .NET objects (runtime-callable wrappers, RCWs), which hide the usual interface querying. In order to register a COM object representing a filter graph with the ...
0
votes
2answers
869 views
DirectShow BaseClasses - a video renderer class with video and input pin
I couldn't find a suitable renderer class in BaseClasses that has 2 input pins - one for video and one for audio. Can anybody recommend/provide some code?
Regards
Dominik
1
vote
2answers
1k views
DirectShow's PushSource filters cause IMediaControl::Run to return S_FALSE
I'm messing around with the PushSource sample filter shipped with the DirectShow SDK and I'm having the following problem:
When I call IMediaControl::Run(), it returns S_FALSE which means "the graph ...
5
votes
3answers
2k views
Direct Show graph - how to get the current fps?
I have an instance of IFilterGraph - my own graph with video filters (source, transofrm and renderer). How can I obtain the current fps (video frame rate) of running graph?
Regards
Dominik
1
vote
1answer
702 views
Direct Show Capture filter “wrapper”
I need to write a DirectShow capture filter that wraps the "real"
video device (fitler) and deinterlaces the captured video. From the
interface perspective, this has to be a separate video device
...
2
votes
1answer
420 views
COINIT_MULTITHREADED and mysterious crashes after using OleCreatePropertyFrame
Is there any benefit of using COINIT_MULTITHREADED in a DirectShow application? For now it has given me some troubles, but I am not sure if using CoInitializeEx(NULL, COINIT_APARTMENTTHREADED) is the ...
1
vote
2answers
139 views
Is CreateInstance of necessary method for a source filter in directshow?
I read in a book that CreateInstance is a MUST for a source filter in directshow,but when I see this I doubt whetger it's true:
CFactoryTemplate g_Templates[] =
{
{
L"Virtual Cam",
...
0
votes
1answer
192 views
How can I find the typelib identifier of the DirectShow interfaces for use with COM4j
I'm trying to interact with a webcam from Java on Windows (without going through the FMJ or JMF frameworks) by using COM4j. However, I'm unable to find the typelib identifier for Direct Show in order ...
0
votes
0answers
411 views
Using DirectShow in Python
I'd like to call this method inside a Python script, with as few extra dependencies as possible. How can I do it? I've tried DirectPython, but it's installer installs only for 32-bit architectures, it ...
0
votes
1answer
658 views
E_ACCESSDENIED on CoCreateInstance
Here is a code snippet
#include "stdafx.h"
#include <tchar.h>
#include <windows.h>
#include <dshow.h>
#include <ExDisp.h>
int _tmain(int argc, _TCHAR* argv[])
{
...
1
vote
2answers
723 views
Problem referencing directshow filter from C#
I have a custom DirectShow filter created by extending the ezrgb24 filter from the DirectShow sample documentation.
I am using this filter (indirectly) in C# through a 3rd party multimedia SDK ...
0
votes
3answers
760 views
How Can I Clone a Camera Source DirectShow Filter?
I'm doing some stereoscopic work which means I have need to work with two instances of various filters (i.e. a camera source that receives an IP stream), and this is proving not to be trivial.
I even ...
0
votes
1answer
648 views
marshalling custom directshow filter interface in c#
Hey folks, I've been stuck on this for the past few days. I have a custom COM interface that I am able to cast to, but when I call one if it's functions I get an AccessViolationException because the ...
0
votes
1answer
703 views
IGraphBuilder::RenderFile() failing with VFW_E_BAD_KEY - 0x800403f2
Continuing investigation on a embedded WindowsMediaPlayer problem, i am trying to do simple file playback via a DirectShow in-process server:
::CoInitializeEx(0, COINIT_MULTITHREADED);
...
1
vote
1answer
324 views
Media Foundation: another way to call IMFActivate::ShutdownObject?
Here is a question about IMFActivate::ActivateObject and IMFActivate::ShutdownObject in Media Foundation.
According to MSDN, the component that calls ActivateObject is responsible for calling ...
0
votes
1answer
637 views
COM : Can IBindCtx* parameter of IMoniker::BindToObject be NULL?
I am using IMoniker::BindToObject function, and I have read the article on MSDN.
The article doen't say the first parameter can be NULL, but the example code on the following page uses NULL as the ...
0
votes
3answers
1k views
Directshow in c# compact framework: trigger handling problems for a Filtergraph's IMediaEvent
I'm working on implementing directshow capability in a C# dll. I'm basing my work off of the C++ based "CameraCapture" example Microsoft provides with the Windows Mobile 6 sdk.
Things were going well ...
