participantMixerLevel 资源类型

命名空间:microsoft.graph

重要

Microsoft Graph版本下的 /beta API 可能会发生更改。 不支持在生产应用程序中使用这些 API。 若要确定 API 是否在 v1.0 中可用,请使用 版本 选择器。

给定音频参与者的混音器级别配置

属性

属性 类型 说明
ducking audioDuckingConfiguration 此 partipant 自定义组合的其他源的 ducking (逐步淘汰) 配置。
exclusiveMode boolean 是否应从组合中删除没有显式源级别的源。
参与者 String 为其配置了混合器的参与者。
sourceLevels audioSourceLevel 集合 其他源的级别配置。

JSON 表示形式

下面是资源的 JSON 表示形式。

{
  "ducking": { "@odata.type": "#microsoft.graph.audioDuckingConfiguration" },
  "exclusiveMode": true,
  "participant": "String",
  "sourceLevels": [ { "@odata.type": "#microsoft.graph.audioSourceLevel" } ]
}

示例-混音器级别

{
  "ducking": {
    "@odata.type": "#microsoft.graph.audioDuckingParameters",
    "rampActive": 1000,
    "rampInactive": 1000,
    "lowerLevel": 20,
    "upperLevel": 100
  },
  "exclusiveMode": true,
  "participant": "123456W77E24E4D85F80597083CB830",
  "sourceLevels": [
    {
      "@odata.type": "#microsoft.graph.audioSourceLevel",
      "duckOthers": false,
      "level": 100,
      "participant": "8A34A46B3D174ADC8DCEDC4E7D572698"
    }
  ]
}