C chinthaka New Member Oct 20, 2023 8 0 1 35 Dec 23, 2024 #1 I want to change the bit rate of the call recording files to reduce storage usage. Where can I update the configuration for this?
I want to change the bit rate of the call recording files to reduce storage usage. Where can I update the configuration for this?
Adrian Fretwell Well-Known Member Aug 13, 2017 1,527 443 83 Dec 24, 2024 #2 You can set a channel variable in the dialplan: Code: <action application="set" data="record_sample_rate=8000"/> Source: https://developer.signalwire.com/freeswitch/Channel-Variables-Catalog/record_sample_rate_16353888/ However if all you need to do is reduce storage usage and you are recording in .wav format, then running a cron job to convert your wav files to mp3, may be a better option. Reactions: chinthaka
You can set a channel variable in the dialplan: Code: <action application="set" data="record_sample_rate=8000"/> Source: https://developer.signalwire.com/freeswitch/Channel-Variables-Catalog/record_sample_rate_16353888/ However if all you need to do is reduce storage usage and you are recording in .wav format, then running a cron job to convert your wav files to mp3, may be a better option.