A retro-style web-based music visualizer inspired by classic Winamp screensavers. Drop in your audio files and enjoy stunning real-time visualizations that react to your music!
- Drag & Drop Support: Simply drop MP3, WAV, and other audio files
 - Multi-file Playlist: Load multiple tracks and navigate between them
 - Full Controls: Play, pause, stop, previous/next, seek, volume control
 - Track Information: Display current track name and playback time
 
- Frequency Bars: Classic spectrum analyzer with colorful bars
 - Waveform: Real-time audio waveform display
 - Circular: Radial frequency visualization
 - Spiral: Mesmerizing spinning spiral patterns
 - Particles: Audio-reactive particle system
 
- Retro Styling: Neon green, magenta, and cyan color scheme
 - Glowing Effects: CSS shadows and particle glow
 - Particle Overlay: Optional floating particles on any visualization
 - Sensitivity Control: Adjust visualization responsiveness
 - Smooth Animations: 60fps canvas-based rendering
 
- Immersive Experience: Hide UI for full-screen visualization
 - Floating Controls: Minimal controls in fullscreen
 - Keyboard Shortcuts: F11 or 'F' to toggle, Escape to exit
 - Responsive Design: Adapts to any screen size
 
- Open 
index.htmlin a modern web browser - Drag & drop audio files or click "Select Files"
 - Use player controls to manage playback
 - Switch between visualization modes
 - Click "๐ฒ Fullscreen" for immersive experience
 
- Drag & Drop: Drop audio files directly onto the interface
 - File Browser: Click "Select Files" to browse your music library
 - Supported Formats: MP3, WAV, FLAC, OGG, and most web-supported audio formats
 
โถ๏ธ /โธ๏ธ: Play/Pause current track- โน๏ธ: Stop and reset to beginning
 - โฎ๏ธ/โญ๏ธ: Previous/Next track
 - Progress Bar: Click to seek to any position
 - Volume: Adjust playback volume
 
- Mode Selector: Choose from 5 different visualization types
 - Particles Toggle: Add/remove floating particle effects
 - Sensitivity: Control how reactive visuals are to audio
 
- Enter: Click fullscreen button or press 'F'
 - Exit: Press Escape or click exit button
 - Controls: Floating panel in top-right corner
 
- Vanilla JavaScript: No frameworks, pure web APIs
 - Web Audio API: Real-time audio analysis
 - Canvas 2D: High-performance graphics rendering
 - CSS3: Modern styling with animations and effects
 - HTML5: Semantic markup and audio element
 
- Chrome/Edge: Full support
 - Firefox: Full support
 - Safari: Full support (may require user interaction for audio)
 - Mobile browsers: Responsive design included
 
- FFT Size: 256 samples for smooth visualization
 - Frequency Data: Real-time frequency domain analysis
 - Time Domain: Waveform visualization support
 - 60fps Rendering: Smooth animations via requestAnimationFrame
 
The visualizer is highly customizable through the code:
Modify the color schemes in the drawing functions:
const hue = (i / dataArray.length) * 360;
ctx.fillStyle = `hsl(${hue}, 100%, 50%)`;Adjust glow and shadow effects:
ctx.shadowColor = `hsl(${hue}, 100%, 50%)`;
ctx.shadowBlur = 10;Customize particle behavior in updateAndDrawParticles():
- Particle count (currently 200 max)
 - Lifetime (currently 100 frames)
 - Speed and physics
 
The visualizer includes responsive design optimizations:
- Touch-friendly controls
 - Optimized layouts for mobile screens
 - Gesture support for fullscreen mode
 - Performance optimizations for mobile browsers
 
web-audio-viz/
โโโ index.html          # Main HTML structure
โโโ styles.css          # CSS styling and animations
โโโ script.js           # JavaScript audio visualizer logic
โโโ README.md          # This documentation
- Clone the repository
 - Open 
index.htmlin a web browser - No build process required - pure vanilla web technologies
 
Try it live: Open index.html
This project is licensed under the MIT License - see the LICENSE file for details.
- Inspired by classic Winamp visualizations
 - Built with modern web standards
 - Designed for music lovers and developers alike
 
Enjoy the visual music experience! ๐ถโจ