LiveLyrics is a single Python script with two pip dependencies —Documentation Index
Fetch the complete documentation index at: https://mintlify.com/x-eon-max/LiveLyrics/llms.txt
Use this file to discover all available pages before exploring further.
requests and winsdk — and requires Windows 10 or 11. There is no package to install from PyPI and no build step; you simply grab the script, install the dependencies, and drop in your Discord token.
Verify Python
Open a PowerShell or Command Prompt window and confirm you have Python 3.8 or newer:You should see output like
Python 3.11.4. If Python is not installed or the version is below 3.8, download the latest release from python.org before continuing.Install dependencies
Install both required packages with a single pip command:
requests handles all HTTP calls to LRCLIB and the Discord API. winsdk provides the Windows SDK bindings needed to read the active media session from the OS.Download the script
Clone the repository or download Alternatively, visit github.com/x-eon-max/LiveLyrics and download the raw
LiveLyrics.py directly from GitHub:LiveLyrics.py file. No other files from the repository are required at runtime.Obtain your Discord token
LiveLyrics authenticates to Discord using a user token — this is the credential your own Discord client uses, not a bot token. Follow the guide at the link below to locate yours:How to get your Discord token
winsdk is a Windows-only package that wraps the Windows Runtime APIs. The script will not run on macOS or Linux — those platforms do not expose the GlobalSystemMediaTransportControlsSessionManager interface that LiveLyrics depends on.