-
Notifications
You must be signed in to change notification settings - Fork 81
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add useKrispNoiseCancellation hook (#986)
- Loading branch information
Showing
13 changed files
with
155 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@livekit/components-core": patch | ||
"@livekit/components-react": patch | ||
--- | ||
|
||
Add krisp hook |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
104 changes: 104 additions & 0 deletions
104
packages/react/src/hooks/cloud/krisp/useKrispNoiseFilter.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,104 @@ | ||
import * as React from 'react'; | ||
import { LocalAudioTrack } from 'livekit-client'; | ||
import type { KrispNoiseFilterProcessor, NoiseFilterOptions } from '@livekit/krisp-noise-filter'; | ||
import type { TrackReferenceOrPlaceholder } from '@livekit/components-core'; | ||
import { useLocalParticipant } from '../../useLocalParticipant'; | ||
|
||
/** | ||
* @alpha | ||
*/ | ||
export interface useKrispNoiseFilterOptions { | ||
/** | ||
* by default the hook will use the localParticipant's microphone track publication. | ||
* You can override this behavior by passing in a target TrackReference here | ||
*/ | ||
trackRef?: TrackReferenceOrPlaceholder; | ||
filterOptions?: NoiseFilterOptions; | ||
} | ||
|
||
/** | ||
* This hook is a convenience helper for enabling Krisp Enhanced Audio Noise Cancellation on LiveKit audio tracks. | ||
* It returns a `setNoiseFilterEnabled` method to conveniently toggle between enabled and disabled states. | ||
* | ||
* @remarks Krisp noise filter is a feature that's only supported on LiveKit cloud plans | ||
* @alpha | ||
* @example | ||
* ```tsx | ||
* const krisp = useKrispNoiseFilter(); | ||
* return <input | ||
type="checkbox" | ||
onChange={(ev) => krisp.setNoiseFilterEnabled(ev.target.checked)} | ||
checked={krisp.isNoiseFilterEnabled} | ||
disabled={krisp.isNoiseFilterPending} | ||
/> | ||
* ``` | ||
*/ | ||
export function useKrispNoiseFilter(options: useKrispNoiseFilterOptions = {}) { | ||
const [shouldEnable, setShouldEnable] = React.useState(false); | ||
const [isNoiseFilterPending, setIsNoiseFilterPending] = React.useState(false); | ||
const [isNoiseFilterEnabled, setIsNoiseFilterEnabled] = React.useState(false); | ||
let micPublication = useLocalParticipant().microphoneTrack; | ||
const [krispProcessor, setKrispProcessor] = React.useState< | ||
KrispNoiseFilterProcessor | undefined | ||
>(); | ||
if (options.trackRef) { | ||
micPublication = options.trackRef.publication; | ||
} | ||
|
||
const setNoiseFilterEnabled = React.useCallback(async (enable: boolean) => { | ||
if (enable) { | ||
const { KrispNoiseFilter, isKrispNoiseFilterSupported } = await import( | ||
'@livekit/krisp-noise-filter' | ||
); | ||
|
||
if (!isKrispNoiseFilterSupported()) { | ||
console.warn('Krisp noise filter is not supported in this browser'); | ||
return; | ||
} | ||
if (!krispProcessor) { | ||
setKrispProcessor(KrispNoiseFilter(options.filterOptions)); | ||
} | ||
} | ||
setShouldEnable((prev) => { | ||
if (prev !== enable) { | ||
setIsNoiseFilterPending(true); | ||
} | ||
return enable; | ||
}); | ||
}, []); | ||
|
||
React.useEffect(() => { | ||
if (micPublication && micPublication.track instanceof LocalAudioTrack && krispProcessor) { | ||
const currentProcessor = micPublication.track.getProcessor(); | ||
if (currentProcessor && currentProcessor.name === 'livekit-noise-filter') { | ||
setIsNoiseFilterPending(true); | ||
(currentProcessor as KrispNoiseFilterProcessor).setEnabled(shouldEnable).finally(() => { | ||
setIsNoiseFilterPending(false); | ||
setIsNoiseFilterEnabled(shouldEnable); | ||
}); | ||
} else if (!currentProcessor && shouldEnable) { | ||
setIsNoiseFilterPending(true); | ||
micPublication?.track | ||
?.setProcessor(krispProcessor) | ||
.then(() => krispProcessor.setEnabled(shouldEnable)) | ||
.then(() => { | ||
setIsNoiseFilterEnabled(true); | ||
}) | ||
.catch((e: any) => { | ||
setIsNoiseFilterEnabled(false); | ||
console.error(e); | ||
}) | ||
.finally(() => { | ||
setIsNoiseFilterPending(false); | ||
}); | ||
} | ||
} | ||
}, [shouldEnable, micPublication, krispProcessor]); | ||
|
||
return { | ||
setNoiseFilterEnabled, | ||
isNoiseFilterEnabled, | ||
isNoiseFilterPending, | ||
processor: krispProcessor, | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.