UNPKG

win-stream-audio

Version:

🎧 Stream Windows system audio to Android devices over WiFi with professional audio controls, EQ, pitch shifting, and effects

89 lines (85 loc) • 2.78 kB
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>🎵 PC Audio Streamer</title> <style> body { font-family: Arial, sans-serif; background: linear-gradient(135deg, #0c0c0c 0%, #1a1a2e 50%, #16213e 100%); color: #00ff41; display: flex; justify-content: center; align-items: center; min-height: 100vh; margin: 0; } .container { text-align: center; background: rgba(0, 0, 0, 0.8); padding: 40px; border-radius: 15px; border: 2px solid #00ff41; box-shadow: 0 0 20px rgba(0, 255, 65, 0.3); } h1 { font-size: 2.5em; margin-bottom: 20px; text-shadow: 0 0 10px rgba(0, 255, 65, 0.5); } .links { display: flex; gap: 20px; justify-content: center; margin-top: 30px; } .link-btn { background: linear-gradient(145deg, #ff6b35, #f7931e); color: #000; text-decoration: none; padding: 15px 25px; border-radius: 10px; font-weight: bold; font-size: 16px; transition: all 0.3s ease; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3); } .link-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 12px rgba(255, 107, 53, 0.5); } .description { margin: 20px 0; font-size: 14px; color: #ccc; line-height: 1.6; } </style> </head> <body> <div class="container"> <h1>🎵 PC Audio Streamer</h1> <div class="description"> Stream Windows system audio to your Android phone over WiFi in real-time!<br> Choose your interface below: </div> <div class="links"> <a href="simple-source.html" class="link-btn"> 🎤 PC Source<br> <small>Start streaming from PC</small> </a> <a href="audiopilot.html" class="link-btn"> 🎧 AudioPilot<br> <small>Professional receiver with EQ & effects</small> </a> </div> <div class="description" style="margin-top: 30px; font-size: 12px;"> <strong>Quick Start:</strong><br> 1. On PC: Click "PC Source" and select "Stereo Mix"<br> 2. On Android: Click "AudioPilot" and connect<br> 3. Enjoy wireless audio streaming! </div> </div> </body> </html>