Video Conferencing C#

  • Thread starter Thread starter john.jff
  • Start date Start date
J

john.jff

Hi

I'am currently trying to make a windows C# video conferencing
application.
I was wondering if any one could point me in the right direction as I'm
new to this level of C#.
From what I know already, I think DirectX's DirectShow will be useful.
I have sample code which captures video from the web cam.

Not so sure how to stream the video either, only have basic client
server knowledge.

Any help would be greatly appreciated

John
 
Don't want to scare you but this task is not easy. Actually there are
three different projects combined in one:
1. You have to choose and implement a signaling protocol such as H.323
or SIP;
2. You have to implement video compression algorithm (H.261 and/or H.263);
3. And RTP (Real Time Protocol).
There are several open source libraries such as OpenH323 but all of them
are in C/C++
 
Back
Top