Ears-104
Commercial in Confidence
Copyright © 2021, all rights reserved by Exacom, Inc.
21
];
Sink = [
"VoxTrigger3",
// VoxTrigger gets data stream to detect voice
"Ears3Stream",
// Channel 3 is also streaming
"Chan3File"
// Writes the data to a file
];
}; // Channel 3
Channel4 = {
Channel = 4;
// The system will consider this channel 4
Source = "Port4";
// This tells where to capture data from
Trigger = [
"VoxTrigger4"
// This activates on differential voltage sense
];
Sink = [
"VoxTrigger4",
// VoxTrigger gets data stream to detect voice
"Chan4File"
// Writes the data to a file
];
}; // Channel 4
}; // Channel
Header
-
This section def ines what inf ormation is packaged inside the header of either a wave f ile or a
stream. There are currently two def ined trigger types, 1) EarsWaveHeader and 2) EarsStreamHeader.
Ears_Source -
Physical port (on the rear of the unit) that a heade
r’s recordings are associated with. This should
match the one provided in the Channel
’s Source parameter.
Ears_Chan -
Logical channel that a
header’s recordings are associated with. This should match the one
provided in the Channel
’s Channel parameter
Ears_Chan_Name -
Value that appears as the Channel Name when viewing recordings on a HindSight server.
Source_ID -
Set SourceID f or mapping to a Source on a HindSight server.
Header: {
// Separator may be = or :
Chan1File: {
Type = "EarsWaveHeader";
EARS_Source = "Port1";
EARS_Channel = 1;
EARS_Channel_Name = "Line 1";
Source_ID = 2011;
};
Chan1Stream: {
Type = "EarsStreamHeader";
EARS_Source = "Port1";
EARS_Chan = 1;
EARS_Chan_Name = "Line 1";
Source_ID = 2011;
};
}; // Header