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
0
votes
1 answer

Android MjpegDemo Modification

I am trying to understand Android MjpegDemo code that I found. This code streams IP camera video to android app. In the original app Mjpeg view takes up an entire screen and doesn't use an activity.xml in the layout dir (which is what I am used to…
vladiator
  • 3
  • 2
0
votes
1 answer

How to handle mjpeg stream with okhttp?

I can't get how to configure the OkHttpClient. I've got a timeout on execute()
avgx
  • 644
  • 5
  • 8
0
votes
1 answer

Mjpg paparazzo.js not working

I'm trying to create a way to view my security cameras without browser support for mjpg streaming. The paparazzo.js seems like a good solution to test out: https://github.com/rodowi/Paparazzo.js/ There is a demo script and I've uploded it to my page…
Toube
  • 57
  • 1
  • 8
0
votes
1 answer

JPEG Streaming Issue- How can I stream the images to a server of my choice?

To keep the intro short, I will mention that I have been building an application that involves executing remote commands from a private website that I have built and having my personal home computer respond to those commands. I discovered that live…
user3126288
  • 35
  • 1
  • 9
0
votes
1 answer

How can I render 6 or more mjpeg streams on the same page?

I have a php page that acts as a proxy for a mjpeg stream for some IP cameras .... header('Content-Type: multipart/x-mixed-replace; boundary=myboundary'); readfile('http://:/'.$camId."/mjpg"; ob_end_flush(); .... and a…
0
votes
1 answer

MjpegView with other XML layouts

I'm developing an APP that needs to gets the stream of an Airdrone through mjpeg. I'm using the classes from this topic. It works great with the example but I need to add some other elements to the same view such as the buttons to control de…
Marcus Gabilheri
  • 1,259
  • 1
  • 14
  • 26
0
votes
1 answer

Capturing real time images from a network camera

What is the best way to capture streamed MJPEG from a network IP camera? I'd like to get frames and process them, using c++ (or python extended with c++). Is OpenCV my best option?
sipickles
  • 1,637
  • 1
  • 19
  • 30
0
votes
1 answer

ip camera foscam jpeg streaming in opencv, only reads first frame from video

I am using opencv 2.4.7, windows 7 and vc++2010 to stream mjpeg from a foscam ip camera. cap.isOpened is not null but only the first frame is displayed and breaks from loop in the second round. this is part of the code I am using: VideoCapture…
user3170824
  • 1
  • 1
  • 1
0
votes
3 answers

Creating an MJPEG Viewer Iphone

I'm trying to make a MJPEG viewer in Objective C but I'm having a bunch of issues with it. First off, I'm using AsyncSocket(http://code.google.com/p/cocoaasyncsocket/) which lets me connect to the host. Here's what I got so…
Tony
  • 23
  • 1
  • 4
0
votes
1 answer

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 video. How can I do it? Please help! Thanks
RuiT
  • 33
  • 1
  • 4
0
votes
0 answers

Unity3D WWW class produces black and gold bands when grabbing mjpegs

I am attempting to grab video feed from an mjpeg stream server. the client is in c#, Unity3D. Whenever I run it, I get a strange image of black and gold bands. I know this is not a problem with the server because the Processing library IPCapture can…
ThaHypnotoad
  • 165
  • 2
  • 5
  • 12
0
votes
1 answer

How can I decode rtp packet of some specific rtp payload type as rtp packet with another payload type?

I'm receiving rtp packets with JPEG payload with VLC. When I mannually setup the type to 26 (JPEG), vlc doesn't try open the stream; if I define it as 96, vlc opens it and displays it wrong - that is due to malformed encoding. To find out the…
Eljah
  • 4,188
  • 4
  • 41
  • 85
0
votes
1 answer

MjpegView not responding to UITapGestureRecognizer

I have MjpegView which was downloaded from mjpeg-iphone (in mjpeg-iphone project, it is named as MJPEGClient, i renamed it to MjpegView for easier understanding of it's functionality) Basically, MjpegView is extension of UIImageView and uses…
Sasa
  • 205
  • 1
  • 3
  • 16
0
votes
2 answers

Live mjpeg video stream from server to android

I am trying to fetch mjpeg live video stream from server to android.I read this answer.it is very helpful to me.It works with this demo url.But, In my video stream it asking for username and password. To set url into MjpegView: setContentView(mv); …
Bhoomika Brahmbhatt
  • 7,404
  • 3
  • 29
  • 44
0
votes
1 answer

Delaying MJPEG stream by 10 seconds

I am trying to make the live video feed delay by 10 seconds. I've tried using delay(); but that just stops and starts the code and I need it to be more of a time shift. I've heard its possible to make an array of a sequence of frames and then shift…