I have an application with an incoming stream and I have enabled the transcoder using the Transrate template. I want to enable/disable encode dinamically (for example enable 240p) without restart application. Using the REST API I can enable qualities, but the changes are only applied if I restart the application:
curl -X PUT --header ‘Content-Type: application/json’ --header ‘Accept: application/json;charset=utf-8’ --digest -u “user:password” -d ‘{“enable”: false}’ http://localhost:8087/v2/servers/defaultServer/vhosts/defaultVHost/applications/test_transcoding/transcoder/templates/transrate/encodes/240p
How can I do this?