Infoscreen/HTPC with webinterface
Go to file
Peder Bergebakken Sundt a9129b197a Expand PlaylistDataCache to automatically fetch missing metadata
This is only used if the constructor kwarg "auto_fetch_data" evaluates to True
2018-03-05 23:15:01 +01:00
dist Add readme and dist setup 2018-03-04 18:29:08 +01:00
grzegorz Expand PlaylistDataCache to automatically fetch missing metadata 2018-03-05 23:15:01 +01:00
res Add readme and dist setup 2018-03-04 18:29:08 +01:00
.gitignore Introduced the mainfunction and configfile, and added the parameter --no-mpv 2016-09-12 02:12:11 +02:00
README.md Fix typos in README 2018-03-05 23:11:55 +01:00
config.py Add readme and dist setup 2018-03-04 18:29:08 +01:00
deploy.bash Add status check in deployment script 2018-02-24 21:30:43 +01:00
main.py Add readme and dist setup 2018-03-04 18:29:08 +01:00
requirements.txt Make __init__ produce a sanic app object instead of simply blocking as main() 2018-02-25 00:18:05 +01:00

README.md

Grzegorz API

Grzegorz is simple REST API for managing an instance of MPV. Why the name Grzegorz? We have a bad taste in humor!

When Grzegorz starts, it launches an instance of MPV and maintains it. It is designed to be used as an info screen or HTPC, and supports multiple users to push changes to the MPV instance.

The API id described and can be tested on http:/localhost:8080/swagger when the server is running. All API endpoints are available under /api

How to run it

First of we need to install any needed dependencies. If you want to, you may do so in a virtual environment.

To install the needed dependencies, run this with sufficient rights (as root?):

pip install -r requirements.txt

Gregorz manages a MPV process, meaning you need MPV installed on your system. Look for it in your package manager.

When finished, you may run the server with:

python3 main.py

The server should now be available at http://localhost:8080/. You may change the address and port in the file named config.py

Making Grzegorz run on boot

When setting up a info screen or HTPC using Grzegors, you may configure it to run automatically on startup.

We recommend installing a headless linux, and create a user for Grzegorz to run as. (We named ours grzegorz, obviously) Then make systemd automatically spin up a X session to run Grzegorz in: Copy the files in the folder dist into $HOME/.config/systemd/user and run the following commands as your user:

$ systemd --user enable grzegorz@0.service
$ systemd --user start grzegorz@0.service