mjpeg support

classic Classic list List threaded Threaded
2 messages Options
Reply | Threaded
Open this post in threaded view
|

mjpeg support

Cirjan, Dragos

Hi there. I'm running a Debian Lenny and a Suse 10.3 (to be updated to Suse 11).

Can anyone please help me deal with mjpeg. I noticed that the format it's supported, but I don't know what plugins to use.
Thanks in advance.

--
-----------------------------------------------------------------
Cristian - Dragos, Cirjan
-----------------------------------------------------------------
Email: [hidden email]
Email: [hidden email], [hidden email]
Telefon: +40726355762

-------------------------------------------------------------------------
This SF.Net email is sponsored by the Moblin Your Move Developer's challenge
Build the coolest Linux based applications with Moblin SDK & win great prizes
Grand prize is a trip for two to an Open Source event anywhere in the world
http://moblin-contest.org/redirect.php?banner_id=100&url=/
_______________________________________________
gstreamer-devel mailing list
[hidden email]
https://lists.sourceforge.net/lists/listinfo/gstreamer-devel
Reply | Threaded
Open this post in threaded view
|

Re: mjpeg support

Wes Miller
Administrator
I am just starting with MJPEG also (and gstreamer, for that matter) and am trying to learn the various pipe stages that work with MJPEG.  I think I can say for sure that these bits work well:


(Remember, your URIs will differ)

gst-launch -e souphttpsrc location="http://10.1.2.3/axis-cgi/mjpg/video.cgi?camera=3" is_live=true ! fakesink

gst-launch -e souphttpsrc location="http://10.1.2.3/axis-cgi/mjpg/video.cgi?camera=3" is_live=true ! multipartdemux !  decodebin ! ffmpegcolorspace ! dshowvideosink

Not sure what file extension to use here.  They are jpeg pictures, but perhaps .mjpg is more dorrect?

gst-launch -e souphttpsrc location="http://10.1.2.3/axis-cgi/mjpg/video.cgi?camera=3" is_live=true ! filesink location="z.jpg"

gst-launch filesrc location="z.jpg" ! multipartdemux !  decodebin ! ffmpegcolorspace ! dshowvideosink


Wes