Tagged Questions

3
votes
2answers
208 views

What format is this JPEG stream from my cheap Chinese IP webcam?

I've got a cheap Chinese IP webcam that has a web interface showing live video. The video appears to be a sequence of jpeg images fed into the browser. If I point wget at the URL ...
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 ...
1
vote
2answers
534 views

How to get errors/warnings in [UIImage initWithData:]

i have an MJPEG stream over RTSP/UDP from which i want to generate JPEGs for a UIImageView with [UIImage initWithData:]. Most of the time this works good, but sometimes i get corrupt images and log ...
0
votes
1answer
29 views

jpg file difference : from wireshark tcp stream and from a C++ socket

I'm trying to record a jpeg image sent by an Ethernet camera in a mjpg stream. The image I obtain with my Borland C++ application (VSPCIP) looks identical in Notepad++ to the tcp stream saved from the ...
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
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 ...