Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to deliver video-streaming from image stream in c#

I will try to explain clearly the context of my problem.

I have a server grabbing frames from an IP camera videostreaming. I'm able to process and edit these images but now I have to deliver these images again as a videostream(mjpeg). It is not mandatory that I need to deliver it as streaming to everyone, it would be enought by now if I can send the streaming through TCP to another client.
I don't have any idea what the best way to go about it would be, as I don't think sending the images one by one is a good practice...

Can anyone help me somehow? I've never dealt with this situation and I'm not able to find any solution on Google (probably I'm not doing the right query...)

How would you handle it?

like image 625
dnaranjo Avatar asked Nov 06 '13 11:11

dnaranjo


1 Answers

I have found a simple CodeProject which performs a very similar task, streaming your desktop. I hope it can help you as well!

like image 197
dnaranjo Avatar answered Oct 18 '22 09:10

dnaranjo