https://github.com/israel-dryer/media-equalizer
A media equalizer gui template built using TKinter
https://github.com/israel-dryer/media-equalizer
Last synced: about 1 month ago
JSON representation
A media equalizer gui template built using TKinter
- Host: GitHub
- URL: https://github.com/israel-dryer/media-equalizer
- Owner: israel-dryer
- Created: 2020-05-11T20:00:27.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-05-11T20:23:51.000Z (over 5 years ago)
- Last Synced: 2025-03-26T20:52:23.373Z (8 months ago)
- Language: Python
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Media-Equalizer
A media equalizer gui template built using TKinter. Nothing fancy. Just wanted to practice different layouts with TK. Use and abuse freely.

I added some functionality to apply presets for various genres. I also added the ability to save a 'custom' preset using the save button.
This application uses a theme available via the [ttkthemes](https://ttkthemes.readthedocs.io/en/latest/) package. `pip install ttkthemes`. Everything else is standard library. You can also change the theme if you wish.
If you don't want to use **ttkthemes**, all you need to do is replace `ttkthemes.ThemedStyle` with `ttk.Style`, and then of course set to a theme that you have installed... you can find out what themes you have pre-installed by running the following code:
```python
import tkinter as tk
from tkinter import ttk
style = ttk.Style()
print(style.theme_names())
```