Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
43 commits
Select commit Hold shift + click to select a range
4d4bf31
Add LocalAudioRecorder helper
lukasIO Mar 6, 2025
1782d3e
cleanup
lukasIO Mar 6, 2025
2ea6895
generalize recorder
lukasIO Mar 6, 2025
4aee23c
uint8
lukasIO Mar 6, 2025
929296f
expose state
lukasIO Mar 7, 2025
cd9b731
use timeslice in constructor as argument
lukasIO Apr 8, 2025
9dc3aab
Create brave-beds-burn.md
lukasIO Apr 8, 2025
a84e540
Merge branch 'main' into lukas/local-record
lukasIO Apr 11, 2025
0c1c18c
Merge branch 'lukas/local-record' of github.com:livekit/client-sdk-js…
lukasIO Apr 11, 2025
edd4bb8
change to super light wrapper
lukasIO Apr 11, 2025
1f04851
Merge branch 'main' into lukas/local-record
lukasIO Apr 28, 2025
eb4afb6
preconnectbuffer methods
lukasIO Apr 29, 2025
7a60314
wip parallel publish
lukasIO May 5, 2025
d87a46e
options as features
lukasIO May 9, 2025
62b834c
Merge branch 'main' into lukas/local-record
lukasIO May 14, 2025
bddf394
Add ParticipantActive event to signal data message readiness
lukasIO May 14, 2025
c9be283
whitespace
lukasIO May 14, 2025
428a3b8
Create nice-moons-clap.md
lukasIO May 14, 2025
df8ef65
address comments
lukasIO May 14, 2025
77baf12
Merge branch 'lukas/participant-active' of github.com:livekit/client-…
lukasIO May 14, 2025
daad392
add waitUntil helper
lukasIO May 14, 2025
d33b6e1
comment
lukasIO May 14, 2025
2ba10c3
reject when disconnected
lukasIO May 14, 2025
d0e6dc9
fix state handling
lukasIO May 14, 2025
2ab789e
wip with bytestream
lukasIO May 14, 2025
5489ad5
Merge branch 'lukas/participant-active' into lukas/local-record
lukasIO May 14, 2025
d1edadc
preconnect integration working
lukasIO May 15, 2025
beb99d8
reuse settings
lukasIO May 15, 2025
c7d9f54
align timeout with swift
lukasIO May 15, 2025
668cc92
add agent timeout
lukasIO May 15, 2025
76d1638
remove outdated example
lukasIO May 15, 2025
cec07cb
fix build with tsconfig
lukasIO May 15, 2025
2302178
add TODO
lukasIO May 15, 2025
9372010
better deferred handling
lukasIO May 16, 2025
5578b85
Merge branch 'main' into lukas/local-record
lukasIO May 16, 2025
b971aa9
Delete .changeset/nice-moons-clap.md
lukasIO May 16, 2025
79e524e
remove TODO
lukasIO May 16, 2025
ef85213
cleanup
lukasIO May 16, 2025
2010e05
Merge branch 'lukas/local-record' of github.com:livekit/client-sdk-js…
lukasIO May 16, 2025
772bc26
lint
lukasIO May 16, 2025
02c8289
Add MediaRecorder mock for tests
lukasIO May 19, 2025
e8cba26
Merge branch 'main' into lukas/local-record
lukasIO May 19, 2025
f20f7cf
remove unneeded script
lukasIO May 19, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/brave-beds-burn.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"livekit-client": patch
---

Add LocalTrackRecorder helper
1 change: 1 addition & 0 deletions examples/demo/demo.ts
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ const appActions = {
timestamp: info.timestamp,
message: await reader.readAll(),
},

room.getParticipantByIdentity(participant?.identity),
);

Expand Down
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,8 @@
"eslint-plugin-ecmascript-compat": "^3.2.1",
"eslint-plugin-import": "2.31.0",
"gh-pages": "6.3.0",
"happy-dom": "^15.10.2",
"happy-dom": "^17.2.0",
"jsdom": "^26.1.0",
"prettier": "^3.4.2",
"rollup": "4.41.0",
"rollup-plugin-delete": "^2.1.0",
Expand Down
Loading
Loading