damp-park-25740
06/13/2025, 12:07 PMpurple-rainbow-1246
06/13/2025, 12:14 PMroom.switchActiveDevice('audioinput', audioDeviceId);
const audioTrack = await createLocalAudioTrack({
echoCancellation: true,
noiseSuppression: true,
autoGainControl: false,
});
const localTrackPublication = await room.localParticipant.publishTrack(audioTrack, {
name: 'microphone',
source: Track.Source.Microphone,
});
happy-fall-9027
06/14/2025, 11:34 PMfew-analyst-46
06/15/2025, 12:57 AMbumpy-caravan-71851
06/16/2025, 2:59 PMlimited-address-91743
06/16/2025, 4:29 PMechoing-gpu-5572
06/16/2025, 8:32 PMpurple-cat-58048
06/16/2025, 10:31 PMnarrow-secretary-65497
06/18/2025, 2:57 PMnarrow-secretary-65497
06/18/2025, 2:57 PMflaky-kilobyte-17895
06/18/2025, 4:02 PMcrooked-intern-92196
06/24/2025, 7:17 AMelegant-rose-56443
06/24/2025, 5:34 PMswift-daybreak-46295
06/24/2025, 5:39 PMMaxListenersExceededWarning: Possible EventEmitter memory leak detected. 101 participantEncryptionStatusChanged listeners added. Use emitter.setMaxListeners() to increase limit
When 150 participants join the meeting, UI is becoming laggy and getting random reconnecting issuebroad-whale-52331
06/25/2025, 9:48 AMconst { roomService } = require("../services/getTokenLivekit");
const handleSync = (socket) => {
socket.on("togglemic", async (data) => {
try {
console.log(data);
await roomService.mutePublishedTrack("5bz-4rt-6xy", data?.uid, data?.sid, data?.value);
} catch (error) {
console.log(error);
}
});
};
module.exports = handleSync;
----------------------------------------
at.addGrant({
roomAdmin:true,
roomJoin: true,
room,
canPublish: true,
canSubscribe: true,
canPublishData: true,
canSubscribeData: true,
});
-----------------------------------
const toggleUnmute = (e, track) => {
e.stopPropagation();
console.log(track);
socket.emit("togglemic", { uid: track.participant.identity,sid: track.participant.sid, value: !isMicrophoneEnabled });
};
Why I am not able to mute any other participant.....????cold-belgium-91163
06/30/2025, 10:56 AMproud-battery-85314
06/30/2025, 3:14 PMcold-belgium-91163
07/03/2025, 5:36 AMnumerous-whale-53652
07/06/2025, 6:01 PMcuddly-motorcycle-94685
07/07/2025, 9:12 PMacceptable-lawyer-31634
07/10/2025, 7:40 AM"@livekit/components-react": "^2.9.12"
"@livekit/components-styles": "^1.1.6"
"livekit-client": "^2.15.0"
gifted-tomato-63690
07/10/2025, 9:50 AMlemon-city-87922
07/10/2025, 2:12 PMflat-photographer-63184
07/10/2025, 4:06 PMadventurous-vase-57893
07/10/2025, 8:25 PMelegant-city-49619
07/11/2025, 12:20 AMlemon-nest-44301
07/11/2025, 6:57 AMlimited-exabyte-54720
07/14/2025, 2:54 AMgorgeous-elephant-19666
07/15/2025, 7:13 PMimportant-rocket-13905
07/16/2025, 9:52 PMroom.on(RoomEvent.TranscriptionReceived, onTranscriptionReceived)
each TranscriptionSegment
has the startTime
and endTime
which seems to be always 0
(why?) but two other fields: firstReceivedTime
and lastReceivedTime
have absolute timestamps that probably we could use. however, how do we get the timestamp of the recording start so we can create a relative timestamps for every word? thanks!