Full Screen mode for GMusicBrowser
This program is a simple web app that connects to the GMusicBrowser API to display in white-on-black and very large font the current song played by my favorite music player. It allows to change to the next and prev song.
When I host some friends, and use my laptop to play music, and I don't want my screen to show anything but the name of the song, and my friends should only be able to go to the next song, not read my email or whatever: putting this webpage in full screen helps!
Also, it is displayed in very large font, to be easily readable from anywhere in the room.
- Install Python, preferably version 3, and pip,
- Install requests and Flask modules with
pip
:
sudo pip3 install -U requests flask
- Clone this project,
cd ~/publis/
git clone https://github.com/Naereen/GMusicBrowser-FullScreen-WebApp.git
- Save it somewhere, for instance
~/publis/GMusicBrowser-FullScreen-WebApp.git
, - When you want to use it, go in the folder, and do
make
.
Note: you can also use this .desktop file to install this as a desktop application:
$ desktop-file-validate gmusicbrowser-fullscreen-webapp.desktop
# if this is OK, install it
$ sudo desktop-file-install gmusicbrowser-fullscreen-webapp.desktop
Then the application will be available from your desktop menu, under the name "Full screen mode for GMusicBrowser".
In GMusicBrowser settings, under the tab "Plugins", enable the "Current song" plugin, and use these two values for the two text boxes:
-
Command to run when the song starts:
/home/lilian/publis/GMusicBrowser-FullScreen-WebApp.git/update_ui.py start %t %a %l %y %d %n %f %c
-
Command to run when the song stops:
/home/lilian/publis/GMusicBrowser-FullScreen-WebApp.git/update_ui.py stop %t %a %l %y %d %n %f %c
Of course, adapt the path to where you downloaded and saved gmusicbrowser_fullscreen_info
.
This short (15s) video shows how to do that:
- Launching the app also opens it in Chromium (by default).
- Use 'n' to play next song, 'p' for previous song, 'space' to pause, 'u' and 'd' to increase and decrease volume (needs this script somewhere in your PATH).
This is a very minimalist interface to GMusicBrowser, any other manipulation still have to be done from the main GMusicBrowser interface, of course!
This other video (30s) shows how to do that:
It shows a nice "fireworks" effects that appears on the page for each click and each action (either a click on a button or a shortcut). It is coded with this script, which uses the awesome
anime.js
project by @juliangarnier (see on GitHub), but I disabled it as I was tired of it. You can enable it again by uncommenting the lines 198-200 on the template file:template.html
.
MIT Licensed (file LICENSE). © Lilian Besson, 2018-2021.