File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 9
9
TOKEN = "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE5MDY2MTMyODgsImlzcyI6IkFQSVRzRWZpZFpqclFvWSIsIm5hbWUiOiJuYXRpdmUiLCJuYmYiOjE2NzI2MTMyODgsInN1YiI6Im5hdGl2ZSIsInZpZGVvIjp7InJvb20iOiJ0ZXN0Iiwicm9vbUFkbWluIjp0cnVlLCJyb29tQ3JlYXRlIjp0cnVlLCJyb29tSm9pbiI6dHJ1ZSwicm9vbUxpc3QiOnRydWV9fQ.uSNIangMRu8jZD5mnRYoCHjcsQWCrJXgHCs0aNIgBFY" # noqa
10
10
11
11
# ("livekitrocks") this is our shared key, it must match the one used by your clients
12
- SHARED_KEY = b"liveitrocks "
12
+ SHARED_KEY = b"livekitrocks "
13
13
14
14
15
15
async def draw_cube (source : rtc .VideoSource ):
@@ -45,8 +45,8 @@ async def draw_cube(source: rtc.VideoSource):
45
45
[3 , 7 ],
46
46
]
47
47
48
- frame = rtc .ArgbFrame (rtc .VideoFormatType .FORMAT_ARGB , W , H )
49
- arr = np .ctypeslib . as_array (frame .data )
48
+ frame = rtc .ArgbFrame . create (rtc .VideoFormatType .FORMAT_ARGB , W , H )
49
+ arr = np .frombuffer (frame .data , dtype = np . uint8 )
50
50
angle = 0
51
51
52
52
while True :
@@ -95,7 +95,7 @@ async def draw_cube(source: rtc.VideoSource):
95
95
96
96
97
97
async def main (room : rtc .Room ):
98
- @room .listens_to ("e2ee_state_changed" )
98
+ @room .on ("e2ee_state_changed" )
99
99
def on_e2ee_state_changed (
100
100
participant : rtc .Participant , state : rtc .EncryptionState
101
101
) -> None :
You can’t perform that action at this time.
0 commit comments