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

How to display MJPEG-stream in Vaadin (Java)?

I`m looking for a way to display a MJPEG-stream (from ip cam) in my vaadin application. My problem is the necessary authentication to start the stream. Really easy solution to simply get the stream: String url = "...urlgoeshere/video.mjpg"; Image…
0
votes
3 answers

Getting frames though a stream and display on screen

I have a requirement of streaming from server and displaying the streamed content on the screen...Streaming is working fine using NSStream, and NSInputStream and NSOutputStream.How can I display it on the screen? Stream used looks like …
Prarthana
  • 87
  • 1
  • 13
0
votes
1 answer

Safari open and close img MIME type multipart / x-mixed-replace streaming on demand

testing a mobile Safari web application, I find that I have an image in your tag img src changes dynamically. This src reference to a url that generates a streaming mjpeg with MIME type multipart / x-mixed-replace. Changing the src notice that the…
austin
  • 5
  • 2
0
votes
0 answers

HTTP Request to Stop or Terminate MJPEG streaming

I have written the MJPEG streaming server on HTTP. My HTTP server receives the request and sends the MJPEG. So far it is working fine. I am using C++ and POCO library. The problem that I don't know when to stop the streaming. On stopping the…
Jawad Akhtar
  • 172
  • 9
0
votes
1 answer

Streaming video of wifi access point camera to a remote computer

After spending weeks of searching the forums and trying different approaches, I didn't find a solution for my quite specific problem. I'm thankful for every hint you might provide. I purchased a Kodak Pixpro 360 camera which offers a view-finder…
Dennis Wolf
  • 11
  • 1
  • 4
0
votes
0 answers

Android Mjpeg Viwer(IP cam) by Fragment

I want to view a mjpeg (IP cam) on Fragment page, use the code as : https://bitbucket.org/neuralassembly/simplemjpegview When it in activity is great, then I change it into a Fragment that I can slide it left and right, I move the onCreat() to…
0
votes
0 answers

Serving an MJPEG stream with tornado in Python

I am trying to use the code here: http://pastie.org/7976455#165 with my own OpenCV routine to display an MJPG stream. I setup the routing without a hitch import threading import time import tornado.ioloop import tornado.web from tornado import…
James Tyas
  • 11
  • 3
0
votes
1 answer

Cant abort MJPEG in android "internet" app, or android chrome

I have a python/flask application that sends mjpeg video to a element. It works fine regarding the streaming, but I have a problem aborting the video. To abort the video at my phone (android) I have to click a link to another page or else the…
Easyrider
  • 3,199
  • 5
  • 22
  • 32
0
votes
0 answers

Multiple MJPEG USB webcams on Linux - VideoCapture behaves differently within and outside a class

I have 2 Logitech Pro 9000 webcams. I want to do some stereocalibration and pose estimation but I'm currently stuck on some weird (for me at least) behaviour on part of cv::VideoCapture. Note that this question is related to the one here. I have…
rbaleksandar
  • 8,713
  • 7
  • 76
  • 161
0
votes
0 answers

Streaming of images via nodejs

I've been working on a solution, that would stream a series of jpg's to the client, and show them as they were a video. This is to avoid autoplay issues on iPads within a panoramic presentation. We don't need audio, so I tried looking into MJPEG,…
Kalms
  • 13
  • 1
  • 7
0
votes
0 answers

Android and MJPEG + SurfaceView

Good night, I'm using an IP camera and takes place the display at the bottom of activity, I used the example of this (Android and MJPEG) but I need to put link viewing on a SurfaceView, for example, because I have some buttons just above.      I…
0
votes
1 answer

how to add duration to mjpeg or how to make mjpeg faster

i have ip-cam mjpeg that i made and it have total 240 frames encode souce is ffmpeg.exe -framerate 25 -i c:\%06d.jpg\ -s 1920x1080 -qscale 1 -vcodec mjpeg -r 25 C:\result.mjpg -y now i want to play result.mjpg by mjpeg player i made my problem 1. i…
n2v2rda2
  • 327
  • 2
  • 5
  • 15
0
votes
1 answer

Drawing performance with CGImageCreateWithJPEGDataProvider?

I've actually curious about this for the iPhone. I am getting an MJPEG stream from a server and trying to render it natively on the iphone (without the use of safari class). Reasons for this is because the safari class while CAN render MJPEG…
Rnegi
  • 1
  • 3
0
votes
1 answer

Save bitmaps to a mjpeg file using C#

I am trying to save bitmaps to an mjpeg file using C#. I can save 1 image as a jpeg with bitmap.Save("filename", System.Drawing.Imaging.ImageFormat.jpeg); In the above code, bitmap is an object of type System.Drawing.Bitmap. I am parsing the…
user2330678
  • 2,221
  • 14
  • 43
  • 67
0
votes
1 answer

ip camera streaming mjpeg user authentication

I am trying to decode my ip camera snapshot.cgi files to stream video. I am trying to implement this behavior Android ICS and MJPEG using AsyncTask. My problem is, that my link is http://xxx.xxx.xx.xx:100/snapshot.cgi?&loginuse=xxxx&loginpas=xxx.…
sanevys
  • 559
  • 1
  • 7
  • 27