October 2018
Intermediate to advanced
420 pages
10h 26m
English
As an evolution of the audio transcoder server, it would be nice to be able to change the encoding parameters from the configuration file, dynamically, without restarting the server. So the encode section of the configuration must evolve to contain the following information:
"encode": { "samplerate": 16000, "bitdepth": 16},
The two samplerate and bitdepth parameters for now are hardcoded in the encoder driver. Two steps are necessary to take these settings into account dynamically:
With these changes, the reactivity diagram of the application becomes as follows: ...