Tagged Questions

0
votes
0answers
7 views

python GTK container for mjpeg stream

I have an mjpeg stream from a web-cam and would like to display it in an application written in python using pygtk. The stream is a string of bytes from the driver. What widget would be best for …
1
vote
2answers
53 views

Which frame does ffmpeg get when reducing the frame rate

I have some video that I would like to convert to images of frames every 2 sec. E.g. If the video is 7 seconds long at 15 fps I would like to get frames 1, 31, 61, 91. The command: ffmpeg -i …
0
votes
1answer
101 views

creating my own MJPEG stream

Hello everyone. 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 …
1
vote
3answers
1k views

Mjpeg VLC and HTTP Streaming

Hello guys, 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
2answers
332 views

What is the specifications for Motion JPEG?

I've been googling like mad and can't find any file format specifications for mjpeg. What should the header look like? Do i just append a series of jpegs after the header? I know it's the usually …
7
votes
8answers
6k 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 …