Questions tagged [mjpeg]

Motion JPEG(MJPEG) is a class of video formats where each video frame is separately compressed as a JPEG image

MJPEG is natively supported in Firefox, Opera, Chrome, Safari. It is accessible in IE through the Chrome Frame plugin or the Axis plugin.

More information on MJPEG at MJPEG in wikipedia

492 questions
3
votes
3 answers

Mjpeg streaming not working on google chrome

I am a newbie to mjpeg streaming. I am trying to build an mjpeg streaming server application that streams mjpeg video to clients running firefox or google chrome. At the moment, the streaming works fine on firefox, but refuses to run on google…
vsx06
  • 87
  • 3
  • 8
3
votes
2 answers

How to capture and broadcast MJPEG stream from an IP webcam

I've purchased a Foscam FI8910W IP webcam which outputs a live video stream in MJPEG format, and I'm trying to embed the live stream in a webpage. I've already accomplished this goal by simply using the camera feed's URL as the source for an HTML…
Alx717
  • 31
  • 1
  • 3
3
votes
0 answers

Detecting socket.io client from image resource request

I'm writing a socket.io based webcam streaming application that should emit a 'streamComplete' event when the feed times out. The problem is, image resources requests don't seem to send the same headers/cookies as a normal AJAX request. This seems…
zigzackattack
  • 343
  • 5
  • 11
3
votes
1 answer

convert h.264 live stream to mjpeg live stream

most browsers can directly display a HTTP MJPEG Stream... while they can´t display h.264 via RTSP without the help of plugins... I have a security cam that can only stream h.264 via RTSP so I can´t view the live video on my browser (nor iPhone etc.)…
Yves030
  • 181
  • 2
  • 3
  • 6
3
votes
0 answers

NodeJS Streaming MJPEG to Browser, some images not shown

I am just sending 5 jpegs to browser. (Actually the code below could be more elegant but it is just to show the idea) im[0] = fs.readFileSync("banner1.jpg"); im[1] = fs.readFileSync("banner2.jpg"); im[2] =…
Mustafa
  • 10,013
  • 10
  • 70
  • 116
3
votes
2 answers

Black screen while trying to stream IP camera in android

I’m developping an android app to monitor some IP cameras. I’m using the MjpegView Class to stream the video. I’ve three cameras. - Camera 1: A public camera i found on internet, without user/password. - Camera 2: A public camera but this one…
dnaranjo
  • 3,647
  • 3
  • 27
  • 41
3
votes
1 answer

Android Phone as Realtime MJPEG Video Server

I'm trying to use my phone as a realtime MJPEG video source. So far, capturing frames and converting them into JPEGs is no big deal. My real issue is sending the multipart response properly. There's tons of documentation about sending multipart…
mercurytw
  • 93
  • 1
  • 8
3
votes
2 answers

Read stream from specific link

I need to read stream from mjpeg with OpenCV library. In more details, I need to read http://194.126.108.66:8887/. But when I try to do it with VideoCapture ipCam; ipCam.open("http://194.126.108.66:8887/") I get the error icvOpenAvi_XINE(): Unable…
Sergei Gorjunov
  • 1,789
  • 1
  • 14
  • 22
3
votes
0 answers

Check motion jpeg stream

Is there any way to check if a Motion JPEG stream is on/working/sending images using JavaScript or jQuery?
Andresh Podzimovsky
  • 1,511
  • 4
  • 13
  • 17
3
votes
2 answers

Capturing images with mjpg-streamer at a higher resolution than 640x480

I'm using mjpg-streamer on Angstrom Linux on a BeagleBone and have been able to capture images from the stream. I can’t however seem to get the resolution to go above 640x480. When I try to set that option the result says it is streaming at the…
ow3n
  • 5,974
  • 4
  • 53
  • 51
2
votes
1 answer

MJPEG network stream to OpenCV 2

Can anyone explain to me why this code below does not work? #include "opencv/cv.h" #include "opencv/highgui.h" #include int main(int, char**) { cv::VideoCapture vcap; cv::Mat image; const std::string videoStreamAddress =…
hansdam
  • 127
  • 3
  • 11
2
votes
3 answers

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 if I access the stream via my webbrowser it shows…
Toby
  • 3,815
  • 14
  • 51
  • 67
2
votes
3 answers

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 to be getting farther. The MJPEG player will play…
John Hamman
  • 341
  • 5
  • 16
2
votes
0 answers

Flask MJPEG stream has long loading time

I wrote a class to display images on a small webpage (mainly images captured by a camera, some image processing in between). I worked after Miguel's blog post. Since few weeks I have an issue that the website sometimes needs a long time to load. To…
chillking
  • 311
  • 1
  • 9
2
votes
1 answer

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. Right now, the authentication part is encrypted using…
galbarm
  • 2,441
  • 3
  • 32
  • 52