Axel Philipsenburg <[EMAIL PROTECTED]> wrote:
 > I was wondering if it is possible to have yuvplay pass the video stream to 
 > stdout besides showing the frames in a window?
 > 
 > I'd like to see how far my encoding has progressed so I'd like to do something 
 > like this:
 > 
 > lav2yuv | filter_stuff | yuvplay | mpeg2enc
 > 
 > Is that possible?

I guess it should be possible to tee the stream into a FIFO,
basically, like this:

$ mkfifo stream.fifo
$ yuvplay < stream.fifo &
$ lav2yuv | filter_stuff | tee stream.fifo | mpeg2enc

Note that I haven't actually tried that.  It's just theory.
;-)

Regards
   Oliver

-- 
Oliver Fromme, secnetix GmbH & Co KG, Oettingenstr. 2, 80538 München
Any opinions expressed in this message may be personal to the author
and may not necessarily reflect the opinions of secnetix in any way.

Cryptography is about mathematics; security is about people.
       -- Bruce Schneier


-------------------------------------------------------
This sf.net email is sponsored by:ThinkGeek
Welcome to geek heaven.
http://thinkgeek.com/sf
_______________________________________________
Mjpeg-users mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/mjpeg-users

Reply via email to