Tagged Questions

3
votes
0answers
289 views

Create MJPEG stream using GStreamer

I'm trying to mimic IP camera that use MJPEG. At this moment to receive the stream in command line I'm using: gst-launch -v souphttpsrc location=http://IP:PORT/video.mjpg is-live=true user-id=USER ...
3
votes
1answer
2k views

Cross-browser solution for displaying MJPEG stream

Is there a lightweight, free, and reliable way to display MJPEG in a cross-browser environment? I'm trying to display an MJPEG stream from an Axis 2120 IP camera on a site that I'm developing, and ...
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
471 views

For an mjpeg stream created with node.js, how do I encode it in another format and then stream?

I create a little application with nodejs that stream a multipart/x-mixed-replace data to browser. This data is created with image data, but the image data may change over time, so in the browser it ...
2
votes
2answers
727 views

Silverlight MJPEG viewer

I would like to consume a Motion Jpeg stream from an IP camera and ideally view it using the media element. I was hoping to find some ready made samples.
1
vote
1answer
430 views

Stream Windows Webcam to iPhone

I am attempting to stream video (no audio) from a Windows webcam DirectShow to the iPhone browser. I am thinking that I will want to use VLC to transcode the video to an MJPEG stream over HTTP and ...
1
vote
2answers
670 views

Video re-streaming server (video output format)

I need to develop a video streaming server which would stream a live video to multiple users. It needs to support the following "video" sources for the re-stream server: web-camera surveillance ...
0
votes
1answer
78 views

ffmpeg2theora oggfwd not working with icecast2

I have a camera streaming (mjpeg) in http://192.168.x.x/image (where x are the rest of the IP). I start my icecast2 server (Ubuntu 10.10) and then I stream using: ffmpeg2theora -f mjpeg ...
0
votes
1answer
466 views

MJPG streaming with audio

I have a program on the server side that keeps generating a series of JPEG files, and I want to play these files on the client browser as a video stream, with a desired frame rates (this video should ...