We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 224a966 commit 9bd6d58Copy full SHA for 9bd6d58
src/app/music/[music_id]/components/player.tsx
@@ -79,7 +79,7 @@ export function Player({ music, musicList }: PlayerProps) {
79
audioRef.current,
80
);
81
const analyser = audioCtxRef.current.createAnalyser();
82
- analyser.fftSize = 2 ** 8;
+ analyser.fftSize = 2 ** 6;
83
elementSource.connect(analyser).connect(audioCtxRef.current.destination);
84
setSource(elementSource);
85
setAnalyserNode(analyser);
0 commit comments