/
Changing audio store mode
Changing audio store mode
Sound data is stored inside a memory buffer. This is good for audio not longer than 10 minutes. If longer, unexcepted errors may occur.
It is possible to store in a temporary file instead of memory. Longer audiofile can then be processed. To change this, insert the next value between “appSettings” in the config file:
<appSettings>
...
<add key="Audio.Store" value="STORE_MODE_TEMP_FILE"/>
...
</appSettings>
The only possible value here is STORE_MODE_TEMP_FILE for a temporary file. Otherwise if empty, not set in config or other value, the memory will be used. You can check the current mode in the log if process is started.
Please note that this option is only available for releases 1.3.5 or higher.
Related content
(c) RTVSoftware