| | 189 | |
|---|
| | 190 | <?php |
|---|
| | 191 | $engineinfo = engine_getinfo(); |
|---|
| | 192 | $astver = $engineinfo['version']; |
|---|
| | 193 | if (version_compare($astver, '1.4', 'ge')) { |
|---|
| | 194 | ?> |
|---|
| | 195 | <tr> |
|---|
| | 196 | <td><a href="#" class="info"><?php echo _("Talker Optimization:")?><span><?php echo _("Turns on talker optimization. With talker optimization, Asterisk treats talkers who |
|---|
| | 197 | arent speaking as being muted, meaning that no encoding is done on transmission |
|---|
| | 198 | and that received audio that is not registered as talking is omitted, causing no |
|---|
| | 199 | buildup in background noise.")?></span></a></td> |
|---|
| | 200 | <td> |
|---|
| | 201 | <select name="opt#o"> |
|---|
| | 202 | <?php |
|---|
| | 203 | $optselect = strpos($options, "o"); |
|---|
| | 204 | echo '<option value=""' . ($optselect === false ? ' SELECTED' : '') . '>'._("No") . '</option>'; |
|---|
| | 205 | echo '<option value="o"'. ($optselect !== false ? ' SELECTED' : '') . '>'._("Yes"). '</option>'; |
|---|
| | 206 | ?> |
|---|
| | 207 | </select> |
|---|
| | 208 | </td> |
|---|
| | 209 | </tr> |
|---|
| | 210 | |
|---|
| | 211 | |
|---|
| | 212 | <tr> |
|---|
| | 213 | <td><a href="#" class="info"><?php echo _("Talker Detection:")?><span><?php echo _("Sets talker detection. Asterisk will sends events on the Manager Interface identifying |
|---|
| | 214 | the channel that is talking. The talker will also be identified on the output of |
|---|
| | 215 | the meetme list CLI command.")?></span></a></td> |
|---|
| | 216 | <td> |
|---|
| | 217 | <select name="opt#T"> |
|---|
| | 218 | <?php |
|---|
| | 219 | $optselect = strpos($options, "T"); |
|---|
| | 220 | echo '<option value=""' . ($optselect === false ? ' SELECTED' : '') . '>'._("No") . '</option>'; |
|---|
| | 221 | echo '<option value="T"'. ($optselect !== false ? ' SELECTED' : '') . '>'._("Yes"). '</option>'; |
|---|
| | 222 | ?> |
|---|
| | 223 | </select> |
|---|
| | 224 | </td> |
|---|
| | 225 | </tr> |
|---|
| | 226 | <?php |
|---|
| | 227 | } |
|---|
| | 228 | ?> |
|---|