Skip to content

mavvos/SpotifyGlobal

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

54 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🎵 Spotify Global 🌐

download license python

Control Spotify from anywhere with customizable Global Hotkeys!
No need for the window to be in focus, working for all Spotify accounts (free & premium)!

How does this work?

SpotifyGlobal is a python script that works listening for hotkeys with the keyboard module then sending them to pywinauto who will send the equivalent hotkey command to the Spotify application. Because commands are sent only to the Spotify window, this script doesn't affect any other audio sources! And because it doesn't use Spotify API, it's functional for all Spotify accounts (free & premium).

Why does this exist?

While Spotify has built-in hotkeys, they don't work out of focus, this is what I was looking to fix with SpotifyGlobal. Sometimes you just don't have time to alt tab or open game bar but still want to interact with the Spotify desktop application. I tried really hard to find a global hotkey solution for a while, but all of them had some sort of problem, so the natural conclusion was for me to make a script that works for my needs, and I'm sharing in hopes it can help you too!

🎁 Download

Click here to download the latest version.

On the download page there's an executable version (.exe), download it, double click and you're good to go!

If you are trying to run the Python script, you'll need Python version 3.6 or newer, then clone this repository:

git clone https://github.com/mavvos/SpotifyGlobal.git

Make sure you have the required modules installed. Inside the cloned directory run:

pip install -r requirements.txt

Inside the SpotifyGlobal directory run SpotifyGlobal.py

🤔 How To Use

When you open SpotifyGlobal it connects to your open Spotify, because of this Spotify must be open and active/maximized when you start SpotifyGlobal.

After connection, let Spotify active/maximized and feel free to click away to other programs, now controlling Spotify with your new global hotkeys!

The first time you open SpotifyGlobal it creates an options.txt file that contains all your hotkeys.

🎹 Default Controls

Hotkey in Script = Expected Command
SHIFT + 8 = Volume Up
SHIFT + 2 = Volume Down
SHIFT + 4 = Previous Track
SHIFT + 6 = Next Track
SHIFT + 5 = Play/Pause
SHIFT + 1 = Go back 5 seconds
SHIFT + 3 = Go forward 5 seconds
SHIFT + 7 = Like/Dislike Track
SHIFT + 9 = Quit Script

⌨ Custom Controls

If you wish to customize your hotkeys, simply locate your options.txt and alter the value that follows the "="

A normal hotkey looks something like this:

VolDown=shift+2

Keys are written as you would expect them, in plain english, so to change the above, you could put:

VolDown=alt+shift+p

This way, to send the Volume Down command to Spotify, you would have to simultaneously press ALT SHIFT P

🐜 Known Issues and Bugs 🦟

  1. If Spotify is minimized it will continue to appear when you press a hotkey. To fix this don't minimize Spotify, let the window open/maximized and click away to your other programs.
  2. SpotifyGlobal doesn't seem to work when Spotify is "closed" to the system tray.
  3. If you spam press hotkeys, you may get stuck in a loop where the commands keep repeating, to fix this close everything and restart applications.
  4. Some hotkey combinations have more trouble than others when it comes to being registered, this is a common problem with the keyboard library.
  5. This software works only on Windows, because of the dependencies on modules pywinauto and pywin32.