Task context and application-specific configurations.
Fields
Key | Type | Required | Description |
---|---|---|---|
inputs [ ] | StringRequired | 입력 URI. 앱에 따라 복수개의 입력이 필요할 수도 있음 | |
outputs [ ] | String | 출력 URI. 앱에 따라 복수개의 출력이 있을 수 있음 | |
appCode | StringRequired | 실행할 앱의 종류를 구분하는 코드. See app_code table | |
alarmIntervalHint | Integer | 선호하는 알람 주기를 앱에게 힌트로 보내기 위한 값. (단위: 밀리초) | |
annotationLevel | Integer | 비디오 주석 수준 (0: 비디오 주석 안함, 1~5: 가장 약함 ~ 가장 강함) | |
appConfigs [ ] | String | 앱의 고유 비정형 설정 값 |
...
Code Block |
---|
{ "inputs ": [ "rtsp://98.210.72.185" ], "outputs ": [ "rtsp://211.31.165.189" ], "appCode": "PeopleCounting2000", "alarmIntervalHint": 5000, "annotationLevel":3, "appConfigs": { "sensibility":"5" // You can add more application specific parameters ... } } |
...