Como sacarle una foto a un stream MJPEG con GStreamer

0
(0)

GStreamer esta bien chido. En 10 minutos te puedes cocinar un programita para sacerle una foto a un stream MJPEG (Por ejemplo el de una camara IP). Ahi tienen la receta:

1
2
3
4
5
#!/bin/bash
URL="http://your_url"
gst-launch-0.10 gnomevfssrc name="camsrc" location=$URL ! multipartdemux ! \
jpegdec ! ffmpegcolorspace !pngenc snapshot="true" ! \
filesink location="test.png"

Saludos.

How useful was this post?

Click on a star to rate it!

Average rating 0 / 5. Vote count: 0

No votes so far! Be the first to rate this post.

3 thoughts on “Como sacarle una foto a un stream MJPEG con GStreamer

Leave a Reply