Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

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 ...
5
votes
4answers
3k 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 ...
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
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
2answers
40 views

mjpeg to raw rgb24 with video4linux

I'm writing a c++ webcam viewer using video4linux. I need a RGB24 output (interleaved R8B8G8) for displaying. I'm able to get video input for almost all low-resolution webcam, using YUYV, GREY8 or ...
3
votes
0answers
284 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
2answers
199 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
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
0answers
235 views

MATLAB - capturing video streams (MJPEG, rtsp, mpeg)

Has anyone worked with capturing video streams from IP cameras in MATLAB? For example to grab frames in MATLAB from rtsp://10.10.10.10:554/live.sdp (rtsp stream) or from ...
2
votes
1answer
126 views

Encrypting video sent from Android device to server

We have developed an Android application that streams H264 & MJPEG video from the android device to a server through internet connection, using HTTP protocol both for authentication and video. ...
2
votes
0answers
120 views

embed Video Display in SWT/RCP

How to display a video (or mjpeg) in a SWT/RCP aplication while the video must has as less as possible impact from the other UI interation? At moment I paint MJPEGs in a Canvas wihtin UI Thread, and ...
2
votes
1answer
228 views

How to stream video in MJPEG Formate in Mac

How can i stream video in MJPEG format in MAC. I am using Qt-kit API of QuickTime.
2
votes
1answer
470 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
1k views

How to make an snapshot from a MJPEG stream in HTML

I have the following HTML web page: <html> <body> <IMG SRC='http://85.46.64.155/axis-cgi/mjpg/video.cgi'> </body> </html> This web page displays the feed of an IP ...
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 ...
2
votes
1answer
581 views

How to play M-JPEG encoded video on HTML5 <video>?

I need to play an M-JPEG encoded movie on HTML5 . Do you know which container (mp4, avi, webm, ogv, etc.) and browser (chrome, safari, etc.) can play this?
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.
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 ...
2
votes
2answers
518 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 ...
1
vote
2answers
45 views

MJPEG Video from IP Camera too fast

I'm just trying to read a video Stream out of an IP Camera (Basler BIP-1280c). The stream I want to have is saved in a buffer on the camera, has a length of 40 seconds and is decoded in MJPEG. Now ...
1
vote
0answers
33 views

Accessing IP webcam streams

I have been asked to investigate having IP camera streams directly in the Silverlight application (running in browser). From what I can see this seems to mean I need to be able to handle RTSP streams ...
1
vote
0answers
66 views

Setting up MJPEG compressor

I made a console program that previews a video from webcam and captures it throught the MJPEG compression filter to .avi format. My schema: WebCam ->IBaseFilter(Video capture filter) ...
1
vote
2answers
517 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 ...
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
0answers
87 views

How to use codecs in android?

I am a newbie in android, and i want to know if there are ways to convert raw bytes captured using surface view to any other format such as MJPEG for faster data transmission. Any help would be much ...
1
vote
1answer
330 views

How to set Streaming Video Format from webcam using libvlc api.?

I am developing an application in which I am supposed to get Streaming using webcam, For this I have used the libvlc api, I am able to stream from webcam, But I am getting the stream in the YUYV ...
1
vote
2answers
668 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 ...
1
vote
2answers
664 views

Extract still image from MJPEG file?

I need to modify each jpg-image of a mjpeg file. I have to use Visual Studio C++ 2010. So far, i need to a) load a mjpeg file from source and b) extract an bitmap (CImage, byte array, ...) In ...
1
vote
2answers
820 views

Write MJPEG stream to disk

How can I write an MJPEG stream to disk in C#? (AVI, MPEG or OGG)
1
vote
1answer
490 views

MJPEG internet streaming - accurate fps

I want to write MJPEG picture internet stream viewer. I think getting jpeg images using sockets it's not very hard problem. But i want to know how to make accurate streaming. while (1) { ...
1
vote
1answer
278 views

What are the X-StartTime and X-TimeStamp HTTP Header values?

I am writing an HTTP proxy to serve up an M-JPEG stream from an IP camera on the LAN. I noticed that it returns the HTTP header X-StartTime: 1276943417197. With each JPEG frame, it also includes a ...
1
vote
1answer
742 views

Creating a dynamic (video) Overlay on Google Maps on Android 2.1

I'm trying to create a map overlay for displaying a video stream (MJPEG) on top of a Mapview. Currently I've a standalone activity that creates a data thread for fetching MJPEG video frames. I'm ...
1
vote
1answer
375 views

How to modify the properties of a DirectShow Filter Output Pin on the fly?

I have a DirectShow source filter for receiving a Network stream containing RFC2435 data (MJPEG over RTP). The properties of the source filter's output pin need to be set-up prior to receiving the ...
0
votes
0answers
42 views

Parse MJPEG File Frames

I have code for an MJPEGPlayer written in Java. It plays Http streaming from webcams. I want to get it to play MJPEG files, but it doesn't work because it cannot parse the frames. For the live webcam ...
0
votes
0answers
52 views

unwanted “NUL” characters string after reading bytes of a mjpg TCP stream

I'm trying to record a jpeg image sent by an Ethernet camera in a mjpg stream. The images I obtain with my Borland C++ application (VSPCIP) are sometimes "corrupted" : I have the example of a ...
0
votes
1answer
26 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
2answers
220 views

how to save the mjpeg stream as 3gp or mp4 format video files to the sdcard in android

i have saved the mjpeg stream to the sdcard as xxx.mjpeg .However, the mjpeg video file was not supported in android. so how could i encode mjpeg video into 3gp or mp4 format and then store them on ...
0
votes
0answers
18 views

Serving a dynamic Kinect Camera Image on IIS

Im currently taking the images that come down from the kinect and saving them as a jpeg on my iis server (via Win Kinect SDK), always overwriting the the current image (i.e. Frame comes down, save it ...
0
votes
1answer
54 views

Streaming jpegs live to iphone app

Im progressing through taking the depth camera feed from my kinect and streaming it to my iphone app. I have got to stage of being able save jpegs for every frame created from the kinect depth image ...
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
0answers
189 views

loading & playing a mjpeg via flash with as3 - Socket errors

I would like to create a flash MJPEG player so unsupported browsers can view it. I have tried 2 routes here, one with a urlStream and other with Sockets. I am going with the sockets because it seems ...
0
votes
1answer
122 views

Where is the bottleneck in mjpeg broadcasting?

I'm streaming mjpeg with PHP just like this <?php //example /cli/watch.php?i=0&j=200 function get_one_jpeg($i) { $path = "img"; //$f = fopen("$path/$i.jpg", "rb"); return ...
0
votes
0answers
11 views

How to set filemask in Mjpeg Tools?

I used to write this command jpeg2yuv -f 24 -I p -n 200 -j *.jpg > result.yuv But here process one file(I think it's first in its sort) and says for others INFO: [jpeg2yuv] Rewriting latest ...
0
votes
1answer
84 views

Solutions to 'convert' http traffic to https? Proxy? (relay)

Our app is all HTTPS, but we grab mjpeg streams from low-budget devices that do not support SSL. So, this means that we can either: i. Mix content and have browsers freak out. (Unacceptable since ...
0
votes
1answer
111 views

How to get the MJPEG stream from a NC541 camera?

I have an NC541 IP camera, which supposedly does have an MJPEG stream, as in the manual it says "The video is compressed by MJPEG", but I can not find a way of how to get that stream from the camera. ...
0
votes
1answer
248 views

Create movie from stream of jpeg files in Java

I am working on a software that receives an MJPEG stream from an IP camera and displays it on the screen. Now I'd like to record the stream at the same time in some movie format. I'm still quite new ...
0
votes
0answers
303 views

FFMPEG Convert from mov, mjpeg codec error

I've a problem when i try to convert a .mov to a .webm with ffmpeg... I've no problems from any others video format. I've enable the Quicktime formats "--enable-zlib" and with the "ffmpeg -formats" ...
0
votes
1answer
181 views

Where is the documentation for the Mjpeg codec used in mencoder, VLC and FFMpeg?

Mencoder has a lovely option for converting a mjpeg file into an avi file with an 'MJPG' codec that plays in VLC. The command line to do this is: mencoder filename.mjpeg -oac copy -ovc copy -o ...

1 2