wip remove exact constraint

This commit is contained in:
lebaudantoine
2026-08-07 17:43:37 +02:00
parent 7514bff7c1
commit dd4a104e3a
@@ -193,7 +193,7 @@ export const Join = ({
const createVideoTrack = async () => {
try {
const track = await createLocalVideoTrack({
deviceId: { exact: videoDeviceId },
deviceId: videoDeviceId,
processor:
BackgroundProcessorFactory.fromProcessorConfig(processorConfig),
})
@@ -223,7 +223,7 @@ export const Join = ({
const createAudioTrack = async () => {
try {
const track = await createLocalAudioTrack({
deviceId: { exact: audioDeviceId },
deviceId: audioDeviceId,
noiseSuppression: true,
echoCancellation: true,
autoGainControl: true,