You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Call recording currently supports mixed audio+video MP4 and mixed audio-only MP3/WAV output formats in Public Preview. The mixed audio+video output media matches meeting recordings produced via Microsoft Teams recording.
28
+
Call recording currently supports mixed audio+video MP4 and mixed audio MP3/WAV output formats in Public Preview. The mixed audio+video output media matches meeting recordings produced via Microsoft Teams recording.
29
29
30
30
| Content Type | Content Format | Channel Type | Video | Audio |
@@ -90,13 +90,46 @@ An Event Grid notification `Microsoft.Communication.RecordingFileStatusUpdated`
90
90
"eventTime": string// ISO 8601 date time for when the event was created
91
91
}
92
92
```
93
+
## Metadata Schema
94
+
```typescript
95
+
{
96
+
"resourceId": <string>, // stable resource id of the ACS resource recording
97
+
"callId": <string>, // group id of the call
98
+
"chunkDocumentId": <string>, // object identifier for the chunk this metadata corresponds to
99
+
"chunkIndex": <number>, // index of this chunk with respect to all chunks in the recording
100
+
"chunkStartTime": <string>, // ISO 8601 datetime for the start time of the chunk this metadata corresponds to
101
+
"chunkDuration": <number>, // duration of the chunk this metadata corresponds to in milliseconds
102
+
"pauseResumeIntervals": [
103
+
"startTime": <string>, // ISO 8601 datetime for the time at which the recording was paused
104
+
"duration": <number> // duration of the pause in the recording in milliseconds
105
+
],
106
+
"recordingInfo": {
107
+
"contentType": <string>, // content type of recording, e.g. audio/audioVideo
108
+
"channelType": <string>, // channel type of recording, e.g. mixed/unmixed
109
+
"format": <string>, // format of the recording, e.g. mp4/mp3/wav
110
+
"audioConfiguration": {
111
+
"sampleRate": <number>, // sample rate for audio recording
112
+
"bitRate": <number>, // bitrate for audio recording
113
+
"channels": <number> // number of audio channels in output recording
114
+
}
115
+
},
116
+
"participants": [
117
+
{
118
+
"participantId": <string>, // participant identifier of a participant captured in the recording
119
+
"channel": <number> // channel the participant was assigned to if the recording is unmixed
120
+
}
121
+
]
122
+
}
123
+
124
+
```
125
+
93
126
## Regulatory and privacy concerns
94
127
95
128
Many countries and states have laws and regulations that apply to the recording of PSTN, voice, and video calls, which often require that users consent to the recording of their communications. It is your responsibility to use the call recording capabilities in compliance with the law. You must obtain consent from the parties of recorded communications in a manner that complies with the laws applicable to each participant.
96
129
97
130
Regulations around the maintenance of personal data require the ability to export user data. In order to support these requirements, recording metadata files include the participantId for each call participant in the `participants` array. You can cross-reference the MRIs in the `participants` array with your internal user identities to identify participants in a call. An example of a recording metadata file is provided below for reference.
98
131
99
-
## Availability
132
+
## Language availability
100
133
Currently, Azure Communication Services Call Recording APIs are available in C# and Java.
0 commit comments