Skip to content

Commit

Permalink
cspell
Browse files Browse the repository at this point in the history
  • Loading branch information
fgwt202412 committed Dec 15, 2024
1 parent 98447b6 commit 46898df
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions cspell.config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,8 @@ overrides:
- filename: "docs/**"
words:
- plex

- filename: "tsconfig.json"
words:
- webcodecs
- mediacapture
2 changes: 1 addition & 1 deletion website/src/components/McapRecordingDemo/audioCapture.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export function startAudioStream({
const fbcArray = new Uint8Array(analyzer.frequencyBinCount);
analyzer.getByteFrequencyData(fbcArray);
const level =
fbcArray.reduce((accum, val) => accum + val, 0) / fbcArray.length;
fbcArray.reduce((acc, val) => acc + val, 0) / fbcArray.length;
progress.value = level / 100;

update(analyzer);
Expand Down

0 comments on commit 46898df

Please sign in to comment.