Disable WebRTC playback in Ant Media Server #5219
Answered
by
Mohit-3196
yashtandon113
asked this question in
FAQs
-
In my use case, I only want to use HLS. Is there any way to disable the WebRTC playback to save resources as there is no option to disable it on the dashboard? |
Beta Was this translation helpful? Give feedback.
Answered by
Mohit-3196
Jun 9, 2023
Replies: 1 comment
-
By default, AMS allows WebRTC playback.
After following these steps, the WebRTC playback feature will be disabled in your Ant Media Server application. If you are using AMS in cluster mode, you can follow these steps to change the settings. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
yashtandon113
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
By default, AMS allows WebRTC playback.
To disable WebRTC playback for your Ant Media Server application, follow these steps:
cd /usr/local/antmedia/webapps/LiveApp/WEB-INF
red5-web.properties
file for editing:`sudo vim red5-web.properties'
settings.webRTCEnabled
property and set it tofalse
:settings.webRTCEnabled=false
sudo service antmedia restart
After following these steps, the WebRTC playback feature will be disabled in your Ant Media Server application.
If you are using AMS in cluster mode, y…