Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. On the Server:
    1. Open the port for receiving data from the remote Client
    2. 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
      titleNote

      RTSP link may be omitted.


  2. On the remote Client:
    1. Download the package of open source FFmpeg libraries from the official website.
    2. Open the command prompt, and go to the folder containing the ffmpeg.exe file.
    3. 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.