Go to documentation repository
Documentation for Axxon Next 4.6.0. Documentation for other versions of Axxon Next is available too.
Previous page Next page
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:
- 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:
listenrtsp://<Server IP-address>:<Port>/<RTSP-link>
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:
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.