The built-in audio client of VN-V25/26 consists of ActiveX control. The ActiveX is available for customized audio
client.
11.1. Audio Monitor(1) Properties of ActiveX
- StreamType Set 0 for HTTP, set 1 for multicast
- IP IP address of VN-V26 in case of HTTP
Multicast address in case of multicast
- Port HTTP Port Number of VN-V26 in case of HTTP
Multicast port number in case of multicast
- Volume Set a value from 0 to 100. 100 is maximum volume.
- Password Set the password of operator.
(2) Methods of ActiveX
- Play Start playback
- Stop Stop playback
(3) HTML Example for audio monitor
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=euc-jp">
<TITLE>V26-AUDIO Monitor Sample</TITLE>
<SCRIPT LANGUAGE="JavaScript">
var monitor_volume=10;
// Control to start
function moni_play_click() {
Monitor.Play();
document.myForm.moni_start_btn.disabled=true;
}
// Control to stopt
function moni_stop_click() {
Monitor.Stop();
document.myForm.moni_start_btn.disabled=false;
84