Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

For the changes to take effect, access the Windows Services and restart Echo service.

Custom tones

Custom tones can be added to the call recorder in order to obfuscate part of a call recording. Since the tones are raw byte data that replace portions of the original WAV audio, they must respect the codec of the original file, e.g. a-law, u-law, etc., and use the same sample size and rate, e.g. 16-bit, 8 KHz.

Once the files have been encoded accordingly, they should be copied to the following location:

Referencemacro
Label{app}\ProgramData\Tri-Line\Echo\tones
.

To enable the system to use these custom tones during the obfuscation, open the

Keywordmacro
Labelsettings.xml
file, located in
Referencemacro
Label{app}\PrgramData\Tri-Line\Echo
and add the following snippet, specifying the filename of the custom tone using the 
Keywordmacro
Labelcodec
element. The
Keywordmacro
Labelid
attribute determines the codec type, e.g. "0" = u-law, "8" = a-law, as per RFC3551 (page 32). A 
Keywordmacro
Labeldefault
element can also be added as the fall-back tone to use.

Code Block
languagehtml/xml
<audio>
    <obfuscation>
        <toneFile>
            <default>{app}/tones/alaw.wav</default>
            <codec id="0">{app}/tones/ulaw.wav</codec>
            <codec id="8">{app}/tones/alaw.wav</codec>
        </toneFile>
    </obfuscation>
</audio>    
Info

For the changes to take effect, access the Windows Services and restart Echo service.