-
Notifications
You must be signed in to change notification settings - Fork 304
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat: Adds notification for conference audio recordings. #564
Conversation
|
||
if (rs != null) | ||
{ | ||
notifyRecordingStatusChanged(rs.getRecordingMode(), rs.getStatus()); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this will result in playing "recording is off" when both jibri and audio recording are on and the jibri is stopped. I think we should read the recording state from both the jibri extension and ConferenceProperties together, and then act on it.
notifyRecordingStatusChanged(rs.getRecordingMode(), rs.getStatus()); | ||
|
||
return; | ||
isJibriRecordingOn = true; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is incorrect when there is a RecordingStatus extension with status=OFF
src/main/java/org/jitsi/jigasi/sounds/SoundNotificationManager.java
Outdated
Show resolved
Hide resolved
…nManager.java Co-authored-by: bgrozev <boris@jitsi.org>
Depends on jitsi/jitsi-xmpp-extensions#109