A command-line tool that turns any Spotify playlist into a music guessing game, inspired by Hitster. Test your music knowledge by guessing songs from your favorite playlists!
- 🎵 Randomly plays songs from any Spotify playlist
- 🎮 Interactive command-line interface
- 🎯 Displays song information after each guess
- 🎧 Directly integrates with Spotify for playback
- macOS operating system
- Spotify desktop app installed
- Spotify API credentials (Client ID and Client Secret)
- Go installed (version 1.16 or higher) - only needed if building from source
- Download the latest release from the Releases page
- Make the file executable:
chmod +x temaster
- Move it to your PATH (optional):
mv temaster /usr/local/bin/
- Clone this repository
- Build the project using one of these methods:
# Using go build go build -o temaster ./cmd # Or using make make build
- Move the executable to your PATH (optional):
mv temaster /usr/local/bin/
- Set up your Spotify API credentials:
export SPOTIFY_CLIENT_ID="your_client_id" export SPOTIFY_CLIENT_SECRET="your_client_secret"
- Run the program:
temaster
- Enter a Spotify playlist URL when prompted
- Try to guess the song and artist
- Reveal the song information
- Repeat!
MIT License