I want to create a software: - Input as a video stream H264 ( from another software) - Output as a webcam for my friends can watch in skype, yahoo, or something like that. I knows I need to create directshow filter to do that, but I dont know what type filter I must to create. And when I have a filter, I dont know how to import it to my application? I need a example or a tutorial, please help me
Asked
Active
Viewed 3,240 times
1
-
1possible duplicate of ["Fake" DirectShow video capture device](http://stackoverflow.com/questions/1376734/fake-directshow-video-capture-device) – gbjbaanb Jun 27 '13 at 09:46
2 Answers
2
You need to create a virtual video source/camera filter. There have been a dozen of questions like this on SO, so I will just link to some of them:
- How to write an own capture filter?
- Set byte stream as live source in Expression Encoder 4
- "Fake" DirectShow video capture device
Windows SDK has PushSource
sample which shows how to generate video off a filter. VCam
sample you can find online shows what it takes to make a virtual device from video source.
See also: How to implement a "source filter" for splitting camera video based on Vivek's vcam?.
NOTE: Latest versions of Skype are picky as for video devices and ignore virtual devices for no apparent reason.
-
Thanks for your help, I have built PushSource, and reg it, I can see it in GraptEdit, now how to show it in list webcam of skype? – Gacom111haaa Jun 26 '13 at 08:49
1
You should start here : Writing DirectShow Filters or here : Introduction to DirectShow Filter Development
I assume you already have Windows SDK for such develpment, if not check this

rkosegi
- 14,165
- 5
- 50
- 83