Skip to content

Commit ba3aa5b

Browse files
committed
Merge remote-tracking branch 'origin/main' into typester/audio-filter-plugin
2 parents a36519d + a2a025c commit ba3aa5b

File tree

22 files changed

+936
-550
lines changed

22 files changed

+936
-550
lines changed

examples/publish_hue.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,13 @@ async def main(room: rtc.Room):
2727
)
2828
.to_jwt()
2929
)
30+
31+
@room.on("participant_disconnected")
32+
def on_participant_disconnected(participant: rtc.Participant):
33+
logging.info(
34+
f"participant {participant.identity} disconnected, reason: {rtc.DisconnectReason.Name(participant.disconnect_reason)}"
35+
)
36+
3037
url = os.getenv("LIVEKIT_URL")
3138
logging.info("connecting to %s", url)
3239
try:

livekit-protocol/livekit/protocol/agent.py

Lines changed: 6 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

livekit-protocol/livekit/protocol/agent.pyi

Lines changed: 2 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

livekit-protocol/livekit/protocol/analytics.py

Lines changed: 40 additions & 25 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)