Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这些是我正在尝试使用的命令
服务器端:
ffmpeg -f x11grab -video_size cif -framerate 25 -i :0.0+10,20 -f avi - | nc -l 1500
客户端:
nc <server ip> 1500 | mplayer -vo x11 -cache 3000 -
它似乎在服务器端流式传输,但客户端无法查看流式传输。
我认为您对服务器和客户端感到困惑;尝试发送方:
ffmpeg -f x11grab -video_size cif -framerate 25 -i :0.0+10,20 -f avi - \ | nc <server ip> 1500
在接收方:
nc -l 1500 | mplayer -vo x11 -cache 3000 -