A full-featured configurable Twitch bot to connect with your MIDI equipment while streaming. Allow your viewers to be part of your musical creations!
- TwitchMIDI
Latest release - TwitchMIDI for Windows, Linux & MacOS (x86-64)
- Extract the zip
- Run TwitchMIDI-yourplatform (e.g TwitchMIDI-win.exe)
- Follow the configuration steps to link this bot to your account. You will see something like this:
- Done. Have fun!
Note: For MacOS, open a terminal, "cd" into the extracted folder and then execute it from there with "./TwitchMIDI-macos". Otherwise you will get an error like: "no such file or directory, open './config/aliases.json'"
- Extract and replace all files into your folder
Okay, this can get a little more complicated, but if you are using custom settings, you already know how they work
- Extract the zip in a different folder than before
- Copy and replace TwitchMIDI-yourplatform (e.g TwitchMIDI-win.exe) and package.json into your folder
- Open config/permissions.json and make sure all commands have an entry, otherwise those missing will always return permissions errors
- That's it!
Note: You do not need to replace the entire config folder unless there is a major version change (e.g, from 1.x.x to 2.x.x). In case of doubt, compare old with new versions of config files and re-apply your changes. See CHANGELOG.md for more info.
This project was born out of an idea for my music streams (twitch.tv/rafaelpernil) where I play piano and improvise with my synth and drum machine. It is really fun, but I wanted to apply my software engineering skills to make something special for my streams, to provide my viewers a new fun way of interacting with my gear.
I had this idea for months but it was not up until recently that I started to define tangible goals and implement them. My previous project, PolyVolcaWeb using the Web MIDI API gave me the confidence and clarity to start :)
My goals were:
- Create a Twitch bot and process commands
- Create a set of MIDI functionalities such as MIDI clock with tempo adjustments, synced chord progressions, notes, loops, cc messages, macros...
- Unite commands and MIDI functionalities
- Make it fast, suitable for streamers, stable and easy to use
So far, this first version does all that, keep reading the features for more details!
- Wide set of MIDI functionalities:
- High precision MIDI Clock using "nanotimer" with adjustable tempo via !settempo
- Sequencer on 4/4 time signature with infinite subdivisions (1 = Quarter note, 0.5 = 8th note, 0.25 = 16th note...)
- Trigger individual notes, build a chord or send a melody separated by commas via !sendnote
- Trigger chord progressions with specific length per chord via !sendchord with an extensive list of chords to choose from. See CHORDS.md
- Loop chord progressions via !sendloop
- Support for music rests using "rest" as a replacement for a chord or note in !sendnote, !sendchord and !sendloop requests
- See the current chord progression via !midicurrentrequest
- Check the chord progression request queue via !midirequestqueue
- Change MIDI velocity via !midivolume
- Send CC (Control Change) messages and sweeps between values via !sendcc
- Clock-Loop synchronizer to correct sync issues via !syncmidi
- Automatic synchronization that forces loops to wait until the start of the beat
- On/Off bot toggle
- Pause requests with !midipause and resume with !midiresume
- Configurable aliases on config/aliases.json
- Commands - Add as many command aliases as you want
- Chord progressions/loops - Add an alias for a chord progresion to play or loop using "name/chords" syntax
- Add chord progressions via !addchord
- Remove chord progression via !removechord
- List all added chord progressions with their name with !chordlist
- Control Change controller names - Put a name to your Control Change controllers (e.g sustain: 64)
- Control Change commands - Assign a set of cc commands
- Sweep functionality, specify two values and the time in milliseconds to get from one value to other (e.g "cutoff 20(5000),cutoff 120(10000)")
- List all added Control Change commands with their name via !cclist
- Reload config/aliases.json, config/permissions.json and config/rewards.json file while using the bot with !fetchdb
- Commands explanation with examples via !midihelp commandname
- Fine-grained command access control with role check, whitelist and blackist on config/permissions.json
- Channel Points reward mode enabled via REWARDS_MODE flag and configurable on config/rewards.json
- Set the name of your channel points reward, the command to launch and the price (e.g. "Twitch Midi - Loop": ["!sendloop",100] )
- Automatic enable/disable rewards on !midion/!midioff
- Automatic points refund on bad requests / any kind of error
- Commands only work for the streamer and mods
- Allow VIPs to bypass rewards via VIP_REWARDS_MODE
- Bundle optimized for different operating systems and no extra software required for execution
- Internationalization with full support for English and Spanish as of right now
- Update checking on startup, a message appears if there is a new version available
Shows all commands available and info about each command.
Syntax:
command // (e.g "sendloop")
Turns on the MIDI functionality of the bot
Turns off the MIDI functionality of the bot
Pauses the requests but keeps playing whatever was already playing
Reactivates requests after they were paused with !midipause
Adds a chord progression or loop with an alias to config/aliases.json.
Syntax:
name/chords(chord length in quarter notes) // (e.g. "pop/C G(2) Amin(2) F")
Removes a chord progression or loop with an alias from config/aliases.json.
Syntax:
alias // (e.g. "pop")
Shows all saved chord progressions or loops from config/aliases.json that can be used
Sends a note or a set of notes.
Syntax:
note1 note2 ... // (e.g. "C4 E4 G4")
Sends a chord progression with an alias or with chords.
Syntax:
chord1 chord2(chord length in quarter notes)... // (e.g. "C(4) G Amin(2) F","pop")
Sends a loop with an alias or with chords.
Syntax:
chord1 chord2(chord length in quarter notes)... // (e.g. "C G Amin F","pop")
Sends a MIDI CC message with an alias, code or value sweeps.
Syntax:
controller value,controller2 value2(delay_in_ms) // (e.g. "43 100,43 60", "cutoff sweep", "cutoff 100,cutoff 10(10000)")
Shows the current request being played.
Shows the request queue for chord progressions and loops.
Shows a list of available CC command macros from config/aliases.json
Sets the velocity for the chords/notes/loops.
Syntax:
value between 0 and 100 // (e.g. "50","100")
Stops the loop once it ends
Stops all MIDI messages and sound
Starts the MIDI clock and sets a tempo.
Syntax:
tempo // (e.g. "120", "200")
Restarts the MIDI clock and syncs loop and clock on the next repetition
Refreshes aliases, rewards and permissions configurations from the respective files.
Question: I get authentication errors each time I open the app. What can I do?
Answer:
Delete
bot-tokens.json
andbroadcaster-tokens.json
from yourconfig
folder. If that does not work, remove BROADCASTER_REFRESH_TOKEN, BROADCASTER_ACCESS_TOKEN, BOT_REFRESH_TOKEN and BOT_ACCESS_TOKEN from your.env
file and re-configure it again
There is no plan regarding contributions in this project.
This software is free and maintained in my spare time. If you want to support my work, please contribute on Paypal
Thank you! ♥
This software is developed by:
Rafael Pernil Bronchalo - Software Engineer
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning - see the CHANGELOG.md file for details.
All rights reserved