Skip to content

Some audio visualizer widget made with tkinter

License

Notifications You must be signed in to change notification settings

Akascape/TkVisualizer

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 

Repository files navigation

TkVisualizer

Simple audio visualizer widget made with tkinter python.

Screenshot

TkAudioVisualizer

GitHub repo size

Example:

from TkVisualizer import TkAudioVisualizer
import customtkinter

root = customtkinter.CTk()
root.geometry("900x500")
viz = TkAudioVisualizer(root)
viz.pack(fill="both", expand=True, padx=10, pady=10)

customtkinter.CTkButton(root, text="Start", command=viz.start).pack(fill="x", expand=True, side="left", pady=10, padx=10)
customtkinter.CTkButton(root, text="Stop", command=viz.stop).pack(fill="x", expand=True, side="right", pady=10, padx=10)
root.mainloop()

Valid arguments: master, bar_width, bar_color, gradient, width, height

Valid methods: .start() and .stop()

Note: This widget is in beta stage, further development needed!