Yes, it is possible to know if a publisher stream was configured with PAF or not, from audioFallbackEnabled property in Advanced Insights (Session Data) PublisherStats.
Please refer below query -
{
project(projectId: xxxx) {
sessionData {
sessions(sessionIds: [
"xxxxx",
]) {
resources {
sessionId
meetings {
resources {
meetingId
createdAt
publishers {
resources {
createdAt
connectionId
stream {
streamId
}
streamStatsCollection {
resources {
createdAt
audioBitrateKbps
videoBitrateKbps
audioFallbackEnabled
}
}
}
}
}
}
}
}
}
}
}
Related to:
Articles in this section
- Can I enable Publisher Audio Fallback in React Native SDK?
- Can I know if Publisher Audio Fallback is enabled or not from the Advanced Insights API?
- How to enable Publisher Audio Fallback in Client SDKs?
- Is Publisher Audio Fallback enabled by default?
- What are the stream types on which Publisher Audio Fallback can be enabled?
- What events should I expect when using Publisher Audio Fallback?
- What is Publisher Audio Fallback?
- Will Publisher Audio Fallback work with both Relayed and Routed sessions?
- Will Publisher Audio Fallback work with SIP Interconnect Video?