Hi, I was following these instructions to do a named pipe to x264 http://ffmpeg.x264.googlepages.com/piping mkfifo fifo.y4m ffmpeg -i test.mp4 -an -f yuv4mpegpipe - > fifo.y4m & x264 --quiet --crf 18 -o video.264 fifo.y4m For some reason, ffmpeg just sits here Stream mapping: Stream #0.1 -> #0.0 Press [q] to stop encoding It doesn't do any processing of test.mp4 and basically sits as a blank console. If I do something like ffmpeg -i test.mp4 -an -f yuv4mpegpipe - > test.y4m & Where test.y4m is not a named pipe, then test.y4m will end up being the yuv4 data... So I guess my question is, is there some extra option I need to compile ffmpeg or x264 with? Or is there another option I need to pass in? I tested this on Ubuntu 8.04 and centos 5.2 Thanks, Josh