Your Server can receive video along with system and microphone audio from a remote Client with the FFmpeg driver over RTSP. To do it, follow the steps below:
Add a 1 channel device and specify its address in the IP address field in the following format:
listenrtsp://<Server IP-address>:<Port>/<RTSP-link> |
RTSP link may be omitted. |
Execute the following command:
ffmpeg.exe -f gdigrab -video_size 640x480 -i desktop -c:v <Codec> -f rtsp -muxdelay 0.1 "listenrtsp://<Server IP-address>:<Port>/<RTSP-link>" |
where
Codec parameter may take mpeg2video, mpeg4, h264 or hevc value;
video_size 640x480 and -muxdelay 0.1 parameters may be omitted or altered.
If necessary, you may specify additional parameters in this command.
Supported parameters | Description |
-draw_mouse <int> | Mouse cursor presence. Available range: 0 to 1, default value: 1. |
-show_region <int> | Capture area indication. Available range: 0 to 1, default value: 1. |
-framerate <video_rate> | FPS value. |
-video_size <image_size> | Video image size. |
-offset_x <int> | Capture area X offset. Default value is 0. |
-offset_y <int> | Capture area Y offset. Default value is 0. |
After the command execution, remote Client's screen is shared on your display.