https://github.com/flashsphere/rainwaveplayer
Android app for rainwave.cc
https://github.com/flashsphere/rainwaveplayer
android rainwave video-game-music
Last synced: 4 months ago
JSON representation
Android app for rainwave.cc
- Host: GitHub
- URL: https://github.com/flashsphere/rainwaveplayer
- Owner: flashsphere
- License: mit
- Created: 2025-06-16T03:28:56.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-12T06:15:46.000Z (6 months ago)
- Last Synced: 2026-01-12T15:43:37.454Z (6 months ago)
- Topics: android, rainwave, video-game-music
- Language: Kotlin
- Homepage:
- Size: 11.4 MB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Player for Rainwave
Android client for [Rainwave](https://rainwave.cc). Rainwave is an interactive radio website that allows users to request, rate, and vote for songs in real time. The site hosts five separate radio streams and focuses on video game music.
The app provides additional features:
- Automatic song voting
- Android Auto support
- Cast support
- Android/Google TV support
### Tasker, et al., support
Use Tasker (other similar app) to start playing with a custom sleep timer duration
Send the following intent:
- Action:
android.intent.action.VIEW - Category:
DEFAULT - Target:
Activity - Data:
rw://rainwave.cc/play/{station_id}?sleep_timer={duration}
station_id: id of the station (optional)1- Game,2- OC ReMix,3- Covers,4- Chiptune,5- All,6- Chill
If nostation_idis specified, it will play the last played station.
duration: duration of sleep timer (optional), in this format: XhXm, where X is a number
i.e.1h- 1 hour,1h5mor65m- 65 minutes,15m- 15 minutes
If nodurationis specified, no sleep timer will be configured.
Examples:
-
rw://rainwave.cc/play/5?sleep_timer=90m
This will start playingAllstation with a 90-minute sleep timer configured
-
rw://rainwave.cc/play/5
This will start playingAllstation without sleep timer configured
-
rw://rainwave.cc/play?sleep_timer=2h
This will start playing last played station with a 2-hour sleep timer configured
-
rw://rainwave.cc/play
This will start playing last played station without sleep timer configured
-