스마트 홈 카메라 가이드
action.devices.types.CAMERA
- 카메라가 복잡하여 공급업체에 따라 기능이 크게 다릅니다. 시간이 지남에 따라 카메라는 특정 기능을 설명하는 많은 특성과 속성을 얻게 되며, 이 중 다수는 특별한 방식으로 동영상/오디오 스트림과 상호작용할 수 있습니다(예: 스트림을 다른 기기로 전송, 스트림의 내용 식별, 피드 재생 등).
이 유형은 기기에 카메라 아이콘 및 일부 관련 동의어 및 별명
기기 기능
관련 트레잇 문서를 참고하세요. 서비스가 지원해야 하는 속성과 상태, EXECUTE 및 QUERY 응답을 빌드합니다.
필수 trait
이러한 특성과 명령은
있습니다. 기기가 이러한 특성을 지원하지 않는 경우
QUERY 또는 EXECUTE 응답의 functionNotSupported
자세한 내용은
오류 및 예외에서 자세한 내용을 확인하세요.
품질 요구사항
- 지연 시간: 2000ms 이하여야 합니다.
- 안정성: 97% 이상이어야 합니다.
기기 예: 단순 카메라
이 섹션에는 일반적인 '카메라'를 나타내는 인텐트 페이로드 예시가 포함되어 있습니다. 위 기기 유형과 특성에 따라 다를 수 있습니다. 구현에서 트레잇을 추가하거나 삭제하면 이러한 변경사항을 반영하도록 응답을 수정하세요.
샘플 SYNC 응답
<ph type="x-smartling-placeholder">{ "requestId": "6894439706274654512", "inputs": [ { "intent": "action.devices.SYNC" } ] }
{ "requestId": "6894439706274654512", "payload": { "agentUserId": "user123", "devices": [ { "id": "123", "type": "action.devices.types.CAMERA", "traits": [ "action.devices.traits.CameraStream" ], "name": { "name": "Simple camera" }, "willReportState": true, "attributes": { "cameraStreamSupportedProtocols": [ "hls", "progressive_mp4" ], "cameraStreamNeedAuthToken": true, "cameraStreamNeedDrmEncryption": false }, "deviceInfo": { "manufacturer": "smart-home-inc", "model": "hs1234", "hwVersion": "3.2", "swVersion": "11.4" } } ] } }
샘플 QUERY 응답
<ph type="x-smartling-placeholder">{ "requestId": "6894439706274654514", "inputs": [ { "intent": "action.devices.QUERY", "payload": { "devices": [ { "id": "123" } ] } } ] }
{ "requestId": "6894439706274654514", "payload": { "devices": { "123": { "status": "SUCCESS", "online": true } } } }
샘플 EXECUTE 명령어
GetCameraStream
명령어 매개변수에 대한 자세한 내용은
action.devices.traits.CameraStream
참조
{ "requestId": "6894439706274654516", "inputs": [ { "intent": "action.devices.EXECUTE", "payload": { "commands": [ { "devices": [ { "id": "123" } ], "execution": [ { "command": "action.devices.commands.GetCameraStream", "params": { "StreamToChromecast": true, "SupportedStreamProtocols": [ "progressive_mp4" ] } } ] } ] } } ] }
{ "requestId": "6894439706274654516", "payload": { "commands": [ { "ids": [ "123" ], "status": "SUCCESS", "states": { "online": true, "cameraStreamAccessUrl": "https://fluffysheep.com/baaaaa.mp4", "cameraStreamReceiverAppId": "1g2f89213hg", "cameraStreamAuthToken": "12657342190192783", "cameraStreamProtocol": "progressive_mp4" } } ] } }
기기 ERRORS
전체 목록 보기 오류 및 예외를 방지합니다.resourceUnavailable
- 스트림 URL 생성과 관련된 모든 실패입니다.