GStreamer Summit

Jul 04, 2008 21:37

We're having a fairly impromptu GStreamer summit this Sunday in Istanbul.

If you're interested in discussion where GStreamer is at, and where it might go next, come along :)

Details:
http://gstreamer.freedesktop.org/wiki/IstanbulSummit2008

gstreamer

Leave a comment

Comments 2

could u tell me what is the pipeline for jpegenc in gstreamer anonymous August 12 2008, 05:44:02 UTC
gst-launch filesrc location= 176x144.yuv ! jpegenc ! filesink location=test.jpg

this doesn't work
please tell where i am wrong

Reply

Re: could u tell me what is the pipeline for jpegenc in gstreamer thaytan August 12 2008, 08:32:31 UTC
You need a parser in the pipeline to split the file up into image buffers of the right size. e.g:

gst-launch filesrc location=foo.yuv ! videoparse width=176 height=144 ! jpegenc ! filesink location=test.jpg

Use 'gst-inspect videoparse' to see the list of other properties you might need to set in order to fully describe the input.

Reply


Leave a comment

Up