
Product
Introducing the Alert Details Page: A Better Way to Explore Alerts
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.
react-speech-visualizer
Advanced tools
A React component that visualizes speech (or any audio) using a grid of dots that change color based on the audio's frequency data. Useful for UI that uses AI speech.

npm i react-speech-visualizer
Import and use the SpeechVisualizer component, passing in the audio file path and optional props.
import SpeechVisualizer from "react-speech-visualizer";
import "./App.css";
function App() {
const [paused, setPaused] = useState(true);
const togglePlayback = () => {
setPaused((prevPaused) => !prevPaused);
};
return (
<div>
<SpeechVisualizer audioPath="/path/to/audio/file.mp3" paused={paused} />
<button onClick={togglePlayback}>{paused ? "Play" : "Pause"}</button>
</div>
);
}
export default App;
audioPath (string) required: The path to the audio file to be visualized.dotActiveColor (string): The color of each dot when lit up. Default is blue.dotInactiveColor (string): The color of each inactivated dot in the grid. Use 'transparent' if you want no background grid to show. Default is black.dotSize (number): The size of each dot in the grid. Default is 2px width and height.gridSideLength (number): The number of dots along one side of the grid, where the grid is a square. Default is 25.paused (boolean): Whether the audio is paused. An initial value of 'false' will act like 'autoplay', but the browser may block autoplaying. Default is true.sensitivity (number): The sensitivity of the visualization. Specifically, the color intensity of each dot is the decibel value of its assigned frequency multiplied by this value. Higher sensitivity shows brighter colors. Default is 90.To report a problem or make a feature request, add a GitHub 'issue' here.
FAQs
React component to visualize speech (or any audio)
We found that react-speech-visualizer demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Product
Socket's new Alert Details page is designed to surface more context, with a clearer layout, reachability dependency chains, and structured review.

Product
Campaign-level threat intelligence in Socket now shows when active supply chain attacks affect your repositories and packages.

Research
Malicious PyPI package sympy-dev targets SymPy users, a Python symbolic math library with 85 million monthly downloads.