Tagged Questions

3
votes
2answers
57 views

How to disable output buffering in PHP

I wrote a simple relay script that connects to a web camera and reads from the socket, and outputs this data using the print function. The data is MJPG data with boundaries already setup. I just ...
3
votes
1answer
3k views

creating my own MJPEG stream

I'm trying to create an MJPEG stream, I have a series of jpegs that I want to put together into a stream so that a user can just hit a URL and get an mjpeg stream. I've been trying for the last few ...
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
1answer
1k views

How to parse MJPEG HTTP Stream within C++?

I need to access and read an http stream which is sending live MJPEG footage from a network camera, in order to do some opencv image processing on the image. I can access the camera's footage through ...
0
votes
3answers
420 views

How to save Pictures from MJPEG Stream with Java?

How is it possible to save the pictures from a MJPEG Stream in Java? I want to call a HTTP MJPEG address and save every single frame to a seperate picture file.
0
votes
0answers
190 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
123 views

Display jpegs coming from http post

I'm sending jpegs to a web server via Http POST. I can access the bytes of each jpeg file that reaches the web server. Now I want do display these jpeg as they reach the web server, as a mjpeg ...