...
If you cannot connect, enter the camera's IP address (eg 192.168.0.10) in the browser URL as shown below, and click the "Connect" button while logged into the camera.
...
(4) AdamAppをインストールするInstall AdamAppインストールする
AdamApp を選択します。Select an AdamApp to install.
...
インストールを終了する
Finish installation.
...
(5) Start AdamApp の起動
...
(6) Stop AdamApp の停止
...
(7) Update AdamApp のアップデート
...
(8) Uninstall AdamApp のアンインストール
...
...
Method 2: Using the operation page of i-pro
...
Camera
(1) ブラウザを起動(Internet Open a browser (Internet Explorer 7 以降)i-pro に、AdamApp をインストールするために、ブラウザを起動します。なお、i-pro の操作画面は、Internet Explorer7 以降に対応しています。or later)
Open Internet Explore to install AdamApps. The operation page is supported by Internet Explorer 7 or later.
(2) 拡張ソフトウェアの操作ページにアクセスAdamApp を Access the extended software operation page
Access the following URL to install AdamApps to i-pro にインストールするために、拡張ソフトウェアの操作ページにアクセスします。.
<http://<IP Address of i-pro>/admin/setup_ext_software.html
アクセスに成功すると、下記の操作ページが表示されます。The operating page appears once you access the URL.
...
(3) Install AdamApp をインストールする
インストールしたい AdamApp を指定して、Execute ボタンを押すと、インストールが開始されます。
...
インストールが成功すると、下記の画面になります。
The installation will begin by selecting an AdamApp you want to install and click “Execute”.
...
The following page appears when the installation completes.
...
(4) Start AdamApp の起動
AdamApp を開始します。i-pro の操作ページでは、「拡張ソフトウェア」の「動作スケジュール」画面にて、「動作内容」を「On」に設定することで開始することができます。また、AdamAppSDK では、Adam Control Extension、及び、AdamApp 開始用シェルスクリプト startAdamApp.sh を用意しています。
Adam Control Extension を利用する場合は、i-proでAdamAppsを実行するの「方法 1: Adam Control Extensionを使用する」を参照してください。
startAdamApp.sh シェルスクリプトを利用する場合は、下記のようにシェルスクリプトを実行してください。なお、startAdamApp.sh スクリプトの先頭に、監視カメラの情報を設定するマクロ変数があります。これらのマクロ変数に、監視カメラの IP アドレス(IPRO_ADDR マクロ)、及び、ユーザ名(IPRO_USER マクロ)とパスワード(IPRO_PASSWD マクロ)を設定したのち、このスクリプトを実行してください。To start an AdamApp, turn on “Operation content” in the “Operation sched.” in “Ext.software”, or execute “startAdamApp.sh” script from command line. AdamApp SDK comes with Adam Control Extension and “startAdamApp.sh” to start AdamApp.
Please refer to “Method 1: Using Adam Control Extension“ when using Adam Control Extension.
A shell script must be executed as indicated below when using “startAdamApp.sh shell script. Note that there are macro variables at the beginning of starAdamApp.sh script that specify the information of the surveillance camera. Please set up these variables with the IP address (IPRO_ADDR), the username (IPRO_USER) and the password (IPRO_PASSWD) before the execution.
Code Block |
---|
$ cd ${SDK_DIR}/tool/adamapp $ ./startAdamApp <AdamApp’s FuncID (in decimal)> ##### AdamApp Information ##### FUNC_ID=257 INSTALL_ID=0DAF95AC ##### start application result ##### {} |
(5) Stop AdamApp の停止
AdamApp を停止します。i-pro の操作ページでは、「拡張ソフトウェア」の「動作スケジュール」画面にて、「動作内容」を「Off」に設定することで開始することができます。また、AdamAppSDK では、Adam Control Extension、及び、AdamApp 停止用シェルスクリプト stopAdamApp.sh を用意しています。
Adam Control Extension を利用する場合は、i-proでAdamAppsを実行するの「方法 1: Adam Control Extensionを使用する」を参照してください。
stopAdamApp.sh シェルスクリプトを利用する場合は、下記のようにシェルスクリプトを実行してください。なお、stopAdamApp.sh スクリプトの先頭に、監視カメラの情報を設定するマクロ変数があります。これらのマクロ変数に、監視カメラの IP アドレス(IPRO_ADDR マクロ)、及び、ユーザ名(IPRO_USER マクロ)とパスワード(IPRO_PASSWD マクロ)を設定したのち、このスクリプトを実行してください。
...