FreePBX 通话录音 - 增加一个流的音量
FreePBX call recording - increase volume on one stream
我安装了 FreePBX,并将入站和出站路由上的通话录音选项都设置为是。
来电和去电都在进行通话录音,但来电流非常安静,听不见。
有没有办法增加单个流的音量。
我知道 tx 和 rx 增益命令,但它们会改变一切的音量,我们在任何通话中都可以听到来电者的声音。
录制完成后,您可以执行脚本(请参阅freepbx中的常规设置)。
在该脚本中,您可以使用 sox 或任何其他转换器并增加一个通道的增益。 Asterisk 在混合通话中将主叫+被叫保存为 left/right 通道。
MixMonitor 命令还有 tx/rx 增益设置,它只会影响录音的音量,不会影响通话本身。我不知道这些参数是否在 FreePBX GUI 上可用。
asterisk*CLI> core show application MixMonitor
v(x): Adjust the *heard* volume by a factor of <x> (range '-4' to '4')
V(x): Adjust the *spoken* volume by a factor of <x> (range '-4' to '4')
W(x): Adjust both, *heard and spoken* volumes by a factor of <x> (range '-4' to '4')
或者,您可以分别记录接收和传输的流。
r(file): Use the specified file to record the *receive* audio feed. Like with the basic filename argument, if an absolute path isn't given, it will create the file in the configured monitoring directory.
t(file): Use the specified file to record the *transmit* audio feed. Like with the basic filename argument, if an absolute path isn't given, it will create the file in the configured monitoring directory.
我安装了 FreePBX,并将入站和出站路由上的通话录音选项都设置为是。
来电和去电都在进行通话录音,但来电流非常安静,听不见。
有没有办法增加单个流的音量。
我知道 tx 和 rx 增益命令,但它们会改变一切的音量,我们在任何通话中都可以听到来电者的声音。
录制完成后,您可以执行脚本(请参阅freepbx中的常规设置)。
在该脚本中,您可以使用 sox 或任何其他转换器并增加一个通道的增益。 Asterisk 在混合通话中将主叫+被叫保存为 left/right 通道。
MixMonitor 命令还有 tx/rx 增益设置,它只会影响录音的音量,不会影响通话本身。我不知道这些参数是否在 FreePBX GUI 上可用。
asterisk*CLI> core show application MixMonitor
v(x): Adjust the *heard* volume by a factor of <x> (range '-4' to '4')
V(x): Adjust the *spoken* volume by a factor of <x> (range '-4' to '4')
W(x): Adjust both, *heard and spoken* volumes by a factor of <x> (range '-4' to '4')
或者,您可以分别记录接收和传输的流。
r(file): Use the specified file to record the *receive* audio feed. Like with the basic filename argument, if an absolute path isn't given, it will create the file in the configured monitoring directory.
t(file): Use the specified file to record the *transmit* audio feed. Like with the basic filename argument, if an absolute path isn't given, it will create the file in the configured monitoring directory.