Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Simulate a DirectShow Webcam

I am a developer in DotNet. I want to give skype a possibility to add a webcam simulator and send my bitmap frames to the DirectShow simulator. In this case I can draw my images in my application and on skype I can share this images to my friend.

PhotoWebcamDirectX

I was on: http://msdn.microsoft.com/en-us/library/dd407344%28VS.85%29.aspx but it's no Dotnet and I am not sure what example I should believe in.

I also saw: http://directshownet.sourceforge.net/ But as far as I undestand, here I cannot do with this framework what I need, or can I?

My question is: What is basically needed to create such an DirectShow item?

Regards

like image 546
Nasenbaer Avatar asked Sep 19 '25 09:09

Nasenbaer


1 Answers

It is possible through a virtual device, see

  • Virtual webcam input as byte stream
  • Is it possible to fake a video stream as virtual cam that is visible in Skype, Lync etc?

You will have hard time implementing this in C# only, as the APIs are for native code.

like image 69
Roman R. Avatar answered Sep 22 '25 07:09

Roman R.