These are the commands I'm trying to use

Server side:

ffmpeg -f x11grab -video_size cif -framerate 25 -i :0.0+10,20 -f avi - | nc -l 1500

Client side:

nc <server ip> 1500 | mplayer -vo x11 -cache 3000 - 

It seems to be streaming on the server side but client is not able to view the stream.

  • You should also include the complete console output for each command. – LordNeckbeard Feb 13 '14 at 18:34

I think you have the server and client confused; try on sending side:

ffmpeg -f x11grab -video_size cif -framerate 25 -i :0.0+10,20 -f avi - \
| nc <server ip> 1500

and on the receiving side:

nc -l 1500 | mplayer -vo x11 -cache 3000 - 

Your Answer

 

By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Not the answer you're looking for? Browse other questions tagged or ask your own question.