@@ -727,6 +727,77 @@ paths:
727727 result : 0
728728 product : Example System
729729 version : 1.0.0
730+ /preview/mute :
731+ put :
732+ operationId : mediaStreamRecordingPreviewMutePut
733+ x-type : one-shot
734+ summary : >-
735+ 音声が付加されているPreview映像に対し、
736+ その映像の音声をミュート状態にするリクエストを送る。
737+ description : >-
738+ 例えば、Preview映像がRTSPの場合に、このAPIにより音声をミュート状態にする。
739+ parameters :
740+ - name : serviceId
741+ description : サービスID。取得対象スマートデバイス
742+ in : formData
743+ required : true
744+ type : string
745+ - name : target
746+ description : >-
747+ ターゲット。レコーダーを識別するID。<br>
748+ 省略された場合にはデフォルトのレコーダーを使用する。<br>
749+ デバイスが音声・動画の両方のレコーダーをサポートする場合、
750+ どちらのレコーダーが使用されるかどうかはデバイスプラグイン依存とする。
751+ in : formData
752+ required : false
753+ type : string
754+ responses :
755+ ' 200 ' :
756+ description : >-
757+ Previewの音声をミュート状態にするリクエストを送った結果を返す。
758+ ミュートリクエストの送信に失敗した場合はエラーを返す。
759+ schema :
760+ $ref : ' #/definitions/RecorderControlResponse'
761+ examples :
762+ application/json :
763+ result : 0
764+ product : Example System
765+ version : 1.0.0
766+ delete :
767+ operationId : mediaStreamRecordingPreviewMuteDelete
768+ x-type : one-shot
769+ summary : >-
770+ 音声が付加されているPreview映像に対し、
771+ その映像の音声のミュート状態を解除するリクエストを送る。
772+ description : >-
773+ 例えば、Preview映像がRTSPの場合に、このAPIにより音声のミュート状態を解除する。
774+ parameters :
775+ - name : serviceId
776+ description : サービスID。取得対象スマートデバイス
777+ in : formData
778+ required : true
779+ type : string
780+ - name : target
781+ description : >-
782+ ターゲット。レコーダーを識別するID。<br>
783+ 省略された場合にはデフォルトのレコーダーを使用する。<br>
784+ デバイスが音声・動画の両方のレコーダーをサポートする場合、
785+ どちらのレコーダーが使用されるかどうかはデバイスプラグイン依存とする。
786+ in : formData
787+ required : false
788+ type : string
789+ responses :
790+ ' 200 ' :
791+ description : >-
792+ Previewの音声のミュート状態を解除するリクエストを送った結果を返す。
793+ ミュート解除リクエストの送信に失敗した場合はエラーを返す。
794+ schema :
795+ $ref : ' #/definitions/RecorderControlResponse'
796+ examples :
797+ application/json :
798+ result : 0
799+ product : Example System
800+ version : 1.0.0
730801 /onRecordingChange :
731802 get :
732803 operationId : mediaStreamRecordingOnRecordingChangeGet
0 commit comments