Go to documentation repository
Page History
...
- On the Server:
- Open the port for receiving data from the remote Client
Add a 1 channel device and specify its address in the IP address field in the following format:
Code Block listenrtsp://<Server IP-address>:<Port>/<RTSP-link>
Info title Note RTSP link may be omitted.
- On the remote Client:
- Download the package of open source FFmpeg libraries from the official website.
- Open the command prompt, and go to the folder containing the ffmpeg.exe file.
Execute the following command:
Code Block 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.
Overview
Content Tools