emmental/emmental-gtk4.py
Anna Schumaker 0fde1f58e2 audio: Add a Player class
I provide a way to load, play, and pause tracks. I also add functions
for picking the next and previous tracks from the tagdb.Stack

Signed-off-by: Anna Schumaker <Anna@NoWheyCreamery.com>
2021-07-23 12:56:17 -04:00

14 lines
225 B
Python
Executable File

#!/usr/bin/python
# Copyright 2021 (c) Anna Schumaker.
import gi
gi.require_version('Gtk', '4.0')
gi.require_version('Gst', '1.0')
import lib
import trackdb
lib.settings.load()
trackdb.load()
import ui
ui.Application.run()