With stream input I could stream TV from vdr systen to n800
#!/bin/bash IN=- OUT=/tmp/out rm -f $OUT.avi /tmp/$OUT.log /usr/bin/mkfifo $OUT.avi cat $OUT.avi & exec /usr/bin/mencoder "$IN" -cache 1024 -srate 44100 -oac mp3lame -lameopts vbr=0:br=128 -af volnorm -ovc lavc \ -lavcopts vcodec=mpeg4:vbitrate=600 -vf-add scale=512:288 -ffourcc DIVX -noidx -o $OUT.avi &>/dev/null