+ Reply to Thread
Results 1 to 4 of 4
-
Years ago (after some trial and error) I piped ffmpeg to mplayer, like this:
Code:ffmpeg -f lavfi -sws_flags bicubic+accurate_rnd -i mandelbrot=s=1280x720 -vcodec huffyuv -pix_fmt rgb24 -f avi - | mplayer -msglevel all=0 -ni -demuxer avi -vo gl -
I wanted mplayer (instead of ffplay) to get the OpenGL renderer for video capturing.
Substituting mplayer with mencoder, you should be able to do something like this:Code:ffmpeg [options...] -vcodec huffyuv -pix_fmt rgb24 -f avi - | mencoder -ni -demuxer avi [options...] -
Code:-vcodec huffyuv // a codec of some kind seems to be required -pix_fmt rgb24 // can't recall if I tried other formats -f avi // force AVI wrapper - // output to stdout -msglevel all=0 // optional: show only fatal error messages -ni // optional: assume non-interlaced input -demuxer avi // force AVI demuxer -vo gl // (mplayer) opengl renderer - // input from stdin -fs // (mplayer) full screen
Similar Threads
-
How to pipe yuv444p from mencoder to ffplay and handle it properly?
By Selur in forum Newbie / General discussionsReplies: 4Last Post: 21st Aug 2016, 09:10 -
Pipe from FFMPEG to HANDBRAKECLI (win32)?
By VideoGuruDude in forum Video ConversionReplies: 3Last Post: 16th Jul 2016, 16:53 -
FFMPEG|FFMBC pipe to encode from .avi to .mxf files
By marcorocchini in forum Newbie / General discussionsReplies: 2Last Post: 21st May 2014, 03:51 -
Full FFMpeg/Mencoder gui?
By TSJNachos in forum Video ConversionReplies: 14Last Post: 20th Apr 2014, 09:45 -
ffmpeg in pipe with mencoder
By marcorocchini in forum Newbie / General discussionsReplies: 2Last Post: 18th Apr 2014, 11:30