Tagged Questions
0
votes
3answers
104 views
Getting the time as file name
I have a program that grabs a video using Direct-show. My problem is that I want the saved video to have the time as name. Here is what I 've done :
CoInitialize(NULL);
CComPtr<IGraphBuilder> ...
0
votes
3answers
86 views
how to use argv[] in a function that need LPCOLESTR
I have a project that uses in wich a function uses a parameter from type LPCOLESTR
HRESULT BuilGraph(IGraphBuilder *pGraph,LPCOLESTR dstFile)
my question is how can I use argv[1] and put it in ...
1
vote
1answer
325 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
125 views
IID_MediaControl undeclared identifier
I'm developping a SmartDevice Win32 DLL for my device with Windows Mobile 6.1 using Visual Studio 2008. I have to use DirectShow and I started reproducing the basic example.
The .h:
#pragma once
// ...
-1
votes
1answer
344 views
Write to Directshow source filter
I have got a directshow source filter which is based on http://tmhare.mvps.org/downloads/vcam.zip. I want to write the webcam frames that has been manipulated using opencv by my (separate) ...
2
votes
1answer
3k views
Virtual webcam input as byte stream
I dont have webcam. And I want to implement virtual webcam (or fake device driver may be) that would work as normal webcam(virtual webcam) and takes memory stream or bytes as input. How can I develop ...
0
votes
1answer
194 views
Unable to find audio stream
I'm trying to adapt a code in order to add a sound capture feature (on a live stream), with the help of ffmpeg and directshow.
When i try to play with ffplay the AVIsynth file, everything works ...
1
vote
1answer
224 views
How to access raw decoded audio data using Windows' built in mp3 decoder?
Since Windows Media Player 6.1, Windows has its' own mp3 decoder. Can I use that decoder to get access to the decoded audio (raw) data?
I assume it would have to be done with DirectShow.
Related ...
0
votes
1answer
379 views
how to take video and audio from a stream and output to a video file as well as images
I am currently trying to make a program that will take a stream coming in, like a webcam and a microphone, and I am trying to save both the video and audio into an AVI file and be able to save out the ...
0
votes
1answer
692 views
Is it possible to record audio with OpenCV
I am trying to record a video in OpenCV from a stream such as a webcam with audio. I am currently writing the application to use DirectShow to grab data from the stream and to pass that data into an ...
1
vote
3answers
799 views
How to implement you own custom DirectShow renderer?
How to implement you own custom DirectShow renderer that could work a-la or instead of SampleGrabber?
