Files
RadioPlayer-22/README.md

109 líneas
3.3 KiB
Markdown
Original Vista normal Histórico

2025-08-01 00:54:18 +00:00
# 🎵 Html5 Full Page Internet Radio Player
2022-12-24 18:30:54 +00:00
2025-08-01 00:54:18 +00:00
A modern, responsive web-based radio player with a beautiful interface. Stream your favorite radio station with real-time song information, lyrics, and playback history.
2023-06-18 21:49:17 +00:00
2025-08-01 00:55:50 +00:00
![Radio Player Preview](img/imageupdate.png)
2023-06-18 21:49:17 +00:00
2025-08-01 00:46:14 +00:00
## ✨ Features
- **🎧 Live Streaming**: Supports multiple streaming protocols (Icecast, Zeno, Shoutcast, Radiojar)
- **🎨 Modern UI**: Spotify-inspired interface with smooth animations
- **📱 Responsive Design**: Works perfectly on desktop, tablet, and mobile devices
- **🎵 Real-time Metadata**: Displays current song, artist, and album artwork
2025-08-19 00:18:57 +00:00
- **📜 Lyrics Integration**: Displays lyrics of the currently playing song.
2025-08-01 00:46:14 +00:00
- **📚 Playback History**: Shows up to 5 recently played songs
- **🎛️ Volume Control**: Precise volume control with keyboard shortcuts
- **⌨️ Keyboard Shortcuts**: Full keyboard navigation support
2025-08-01 00:58:46 +00:00
## 🔌 Supported APIs
2025-08-01 00:59:59 +00:00
This radio player supports integration with multiple radio streaming APIs through [RadioAPI.me](https://radioapi.me):
2025-08-01 00:58:46 +00:00
- **Azuracast API** - Open-source radio broadcasting suite
- **Live365 API** - Professional internet radio platform
- **RadioKing API** - European radio streaming service
2025-08-02 02:18:38 +00:00
## 📡 Supported Stream Types
This radio player supports various streaming protocols and platforms:
- **Icecast** - Open-source streaming media server
- **Shoutcast** - Nullsoft's streaming media server
- **Zeno** - Modern streaming platform
- **Radiojar** - Cloud-based radio streaming
- **HTTP/HTTPS Streams** - Direct audio stream URLs
2025-08-01 00:58:46 +00:00
Get detailed song information from multiple music platforms:
- **iTunes (Apple Music)** - Apple's music catalog
- **Spotify** - World's largest music streaming platform
- **YouTube Music** - Google's music streaming service
- **Deezer** - French music streaming service
- **KKBOX** - Asian music streaming platform
- **Line Music** - Japanese music streaming service
- **FLOMusic** - Korean music streaming platform
2025-08-01 00:46:14 +00:00
## 🚀 Quick Start
1. **Clone the repository**
```bash
2025-08-01 00:54:18 +00:00
git clone https://github.com/joeyboli/radioplayer.git
cd radioplayer
2025-08-01 00:46:14 +00:00
```
2025-08-01 00:50:14 +00:00
2. **Configure your radio stream**
2025-08-01 00:46:14 +00:00
- Open `js/script.js`
- Update the `URL_STREAMING` constant with your stream URL
2025-08-01 00:50:14 +00:00
- Get your API endpoint from [RadioAPI.me](https://radioapi.me)
2025-08-01 00:46:14 +00:00
2025-08-01 00:52:09 +00:00
3. **Open in browser**
2025-08-01 00:46:14 +00:00
```
2025-08-01 00:52:09 +00:00
Open index.html in your browser
2025-08-01 00:46:14 +00:00
```
## ⚙️ Configuration
Edit `js/script.js` to configure your radio stream:
2023-06-18 21:49:17 +00:00
```javascript
2025-08-01 00:46:14 +00:00
const URL_STREAMING = "https://your-stream-url.com/stream"
2025-08-31 06:13:15 +00:00
const API_URL = "https://prod-api.radioapi.me/streamtitile/STREAM_ID"
2025-08-01 00:46:14 +00:00
```
## 🎮 Keyboard Shortcuts
| Key | Action |
|-----|--------|
| `Space` or `P` | Play/Pause |
| `↑` | Volume Up |
| `↓` | Volume Down |
| `M` | Mute/Unmute |
| `0-9` | Set volume to 0-90% |
## 🎨 Customization
2025-08-01 00:50:14 +00:00
To change the number of history items displayed, edit `js/script.js` and modify the `HISTORY_ITEMS_COUNT` constant.
2023-06-21 20:28:06 +00:00
2025-08-01 00:46:14 +00:00
## 📱 Browser Support
2023-06-18 21:49:17 +00:00
2025-08-01 00:46:14 +00:00
- ✅ Chrome 60+
- ✅ Firefox 55+
- ✅ Safari 12+
- ✅ Edge 79+
2023-06-18 21:49:17 +00:00
2023-11-14 06:43:35 +00:00
2025-08-01 00:46:14 +00:00
## 🌐 API Integration
2023-06-18 21:49:17 +00:00
This player uses [RadioAPI.me](https://radioapi.me) for metadata and its lyrics. Get your API endpoint from their service.
2024-08-08 06:41:19 +00:00
2025-08-01 00:46:14 +00:00
## 🐛 Troubleshooting
2024-10-16 13:09:02 +00:00
2025-08-01 00:46:14 +00:00
- Check browser console for errors
2025-08-01 00:50:14 +00:00
- Verify stream URL is accessible
- Ensure API endpoint is working
2023-09-09 17:52:44 +00:00
2025-08-01 00:46:14 +00:00
## 📄 License
2023-09-09 17:52:44 +00:00
2025-09-12 03:49:06 +00:00
GNU AFFERO GENERAL PUBLIC LICENSE
2023-07-25 01:33:25 +00:00