Skip to content

Commit

Permalink
chebyshev
Browse files Browse the repository at this point in the history
  • Loading branch information
Austin Hutchen authored and Austin Hutchen committed Jan 31, 2025
1 parent 6056279 commit bb9c41a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/common/AudioVisualizer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export const AudioVisualizer: React.FC = () => {
audioContextRef.current = audioContext;

const analyser = audioContext.createAnalyser();
analyser.fftSize = 4096;
analyser.fftSize = 8192;

// Create a BiquadFilterNode and configure it
const filter = audioContext.createBiquadFilter();
Expand Down Expand Up @@ -97,7 +97,7 @@ export const AudioVisualizer: React.FC = () => {
}
}

ctx.fillText(text, xPos, canvas.height - 10);
ctx.fillText(text, xPos, canvas.height - 5);
});
};

Expand Down

0 comments on commit bb9c41a

Please sign in to comment.