Tagged Questions

17
votes
8answers
19k views

Creating an MJPEG video stream in c#

I have images being sent to my database from a remote video source at about 5 frames per second as JPEG images. I am trying to figure out how to get those images into a video format so I can stream a ...
4
votes
3answers
2k views

C# Microsoft LifeCam HD mjpeg capture

I have a Microsoft LifeCam HD-5000 webcams. According to AMCap, the camera outputs a MJPEG stream at 30fps at 720p. I want to capture each JPEG frame in a small application without doing any preview ...
3
votes
3answers
6k views

Mjpeg VLC and HTTP Streaming

I'm generating a MJpeg Stream and trying to stream it to VLC and play it there. The code: public void SendMultiPartData(String contentType, Func<byte[]> getData) { ...
2
votes
3answers
4k views

HttpWebResponse with MJPEG and multipart/x-mixed-replace; boundary=--myboundary response content type from security camera not working

I have an ASP.NET application that I need to show a video feed from a security camera. The video feed has a content type of 'multipart/x-mixed-replace; boundary=--myboundary' with the image data ...
1
vote
2answers
831 views

Write MJPEG stream to disk

How can I write an MJPEG stream to disk in C#? (AVI, MPEG or OGG)
0
votes
2answers
326 views

ashx handler, access HttpContext.Current inside void

i've changed this question dramaticlly but here it goes. I'm reading a mjpeg stream from an IP cam which all goes fine. But now on every frame which I receive (See stream_NewFrame) I want to push this ...
0
votes
1answer
96 views

WPF and MJPEG Decoder Help

This might be a little of a long shot, but here goes: I have a WPF project and need to stream MJPEG video. The library at http://mjpeg.codeplex.com/ seems to be one of the few PnP options. It works ...
0
votes
0answers
720 views

Load compressed video in C# EmguCV

I'm working on C# application that should be able to open a video file that might be compressed as MJPEG, and display individual frames. At the moment I'm using EmguCV, I'm able to create a capture, ...
0
votes
0answers
191 views

Stacking images from byte array

I have several byte arrays that contain jpeg images and I am trying to send them to a specific socket for viewing as mjpegs. I can do this for a single jpeg using the following header: string header ...
0
votes
1answer
868 views

How to save a MJPEG Stream to disk (C# .NET)?

I have an application that read the stream from a camera (MJPEG) and show it on the form in real time (in a picture box). This is working. This stream reading start when the user click on the button ...