From e843fc78d841b79a14c9fd633f28f9f8e6e94581 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ebbe=20Ba=C3=9F?= Date: Fri, 28 Feb 2025 21:39:57 +0100 Subject: [PATCH] added README text and changed windows title MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Ebbe Baß --- README.md | 7 ++++++- main.py | 2 +- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index d56d88d..7e49e0a 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,8 @@ # bpm-to-showcontroller-live-converter -This is a small aplication that can convert BPM to the value you have to set the speedmaster in Showcontroller/Dynamics Live to get the specific BPM you want. \ No newline at end of file +This is a small aplication that can convert BPM to the value you have to set the speedmaster in Showcontroller/Dynamics Live to get the specific BPM you want. + +I made this since the speedmaster in Live doesn't correspond to any BPM in a "logical" way. So this means when the fader is at 255 the actual BPM is way higher. I made this calculator by making some "probe points" with another script I used for detecting the actual BPM and then noting the BPM and the corresponding fader value. + +Why did I even make this application? +I control Showcontroller Live via ArtNet and therefor I use the speedmaster to set the speed of the song for Live. This application does not send a MidiClock signal or something like that. It just calculates the fader value that you can then use in your lighting control software. \ No newline at end of file diff --git a/main.py b/main.py index cb55757..857ae6e 100644 --- a/main.py +++ b/main.py @@ -20,7 +20,7 @@ def convert(event=None): # Create UI root = tk.Tk() -root.title("BPM to Showcontroller Live calculator") +root.title("BPM to Live calculator") root.geometry("300x150") frame = ttk.Frame(root, padding=10)