Skip to content

A script to use one or multiple midi input device(s) to control OBS-Studio functions without wasting keyboard hotkeys (including macro support) from anywhere in the network. Waiting for a nativ implementation since 2017 ;)

License

Notifications You must be signed in to change notification settings

houz/MIDItoOBS

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Midi OBS what???

This script let's you use one or multiple MIDI controller (like the Novation Launchpad, Ableton Push, Akai LPD or the Korg nanoPAD to mention a few) to switch scenes, start/stop recording/streaming, control volume/gain/delay/transition time and more in obs-studio.

Important: If you are upgrading from a version that you downloaded before Sep 14. 2019, your old configuration file is no longer usable and you have to re-create the entire mapping!! This is because of the new multi-device feature. (If this is a huge problem for you let me know and i'll tell you the steps to migrate the configuration by hand)

Requirements

Setup Part 1

  • Install Python 3.x.x (whatever the latest version is)
    • On Windows: Make sure you trick "Add Python 3.x to PATH" in the setup
  • Make sure you also install pip
  • For instructions how to install TinyDB click here
  • For instructions how to install mido and python-rtmidi click here
  • For instructions how to install websocket-client click here
  • For instructions how to install dbj click here

If you want to install all packages in one go, run "pip install -r requirements.txt"

Setup Part 2 OBS Websocket

  • Download the installer and run it
  • Start OBS, open the "Tools" menu and select "websocket server settings"
  • Make sure that "Enable Websocket server" is checked, "Server Port" is 4444, "Enable authentification" is unchecked and "Enable System Tray Alerts" is unchecked(trust me, you don't want that on)

Setup Part 3

  • Download the latest Release or clone it if you want to test the bleeding edge features and bugfixes

  • Connect your MIDI controller

  • Launch obs-studio

  • Launch the setup.py (Try double click or the "Run Setup.bat" if you are on Windows)

  • If you run the setup for the first time and have no yet setup a device yet, it will automatically start the device configuration:

    • You will get a list of available MIDI devices. Type the number you want to select and press Enter
    • You will be asked if you want to ad another device.
    • If you only have a single device choose 2 and press enter, otherwise select 1 and you will get a list with remaining devices.
  • Now you will be asked to press a button or move a fader on your MIDI controller, do that

  • If your midi controller sends control change messages, you will also be asked for the type of the input(fader or button)

  • Select an action from the list and press enter. The names represent the request-type in obs-websocket

  • Depending on the action, you will also be asked for the scene and source name (selecting always works by typing in the number and pressing enter). If no source of that type is available and you are promted to "select 0--1:" then you know that is no such source available in obs and the script will crash trying to select anything. Just add the required object and restart the setup script in this case. (This is already on the todo list for a further update)

  • Available for buttons:

    • SetCurrentScene: Switches to the scene
    • SetPreviewScene: Puts a scene into preview when in studio mode
    • TransitionToProgram: Transitions the current preview scene to program
    • SetCurrentTransistion: Sets the transition that is used with SetCurrentScene
    • SetSourceVisibility: Hides or unhides a source
    • ToggleSourceVisibility: Toggles the visibility of a source
    • ToggleMute: Toggles the mute status from a source
    • SetMute: Mutes or unmutes a source
    • StartStopStreaming: Toggles the Streaming
    • StartStreaming: Starts streaming
    • StopStreaming: Stops streaming
    • StartStopRecording: Toggles the Recording
    • StartRecording: Starts recording
    • StopRecording: Stops recording
    • StartStopReplayBuffer: Toggles the replay buffer
    • StartReplayBuffer: Starts the replay buffer
    • StopReplayBuffer: Stops the replay buffer
    • SaveReplayBuffer: Save the replay buffer
    • PauseRecording: Pauses the recording
    • ResumeRecording: Resume the recording that was previously paused
    • SetTransitionDuration: Sets the length of the currently selected transistion if supported(fade)(in ms) to a predefined value
    • SetCurrentProfile: Changes to the selected obs profile
    • SetCurrentSceneCollection: Changes to the selected obs scene collection
    • ResetSceneItem: Resets a scene item
    • SetTextGDIPlusText: Sets the text of a GDI text source
    • SetBrowserSourceURL: Sets the url of a BrowserSource
    • ReloadBrowserSource: Reloads a BrowserSource
    • TakeSourceScreenshot: Don't be fooled by the name; Takes a screenshot of the selected source or complete scene and saves it inside the MIDItoOBS folder as a png image
    • EnableSourceFilter: Enables a filter that is on a source (Works with "Audio Filters" and Video "Effect Filters")
    • DisableSourceFilter: Disables a filter that is on a source (Works with "Audio Filters" and Video "Effect Filters")
    • ToggleSourceFilter: Toggles the status of a filter on a source for each button press
  • Available for faders

    • SetVolume: Sets the volume of a source (unlike other solutions this will actually make the fader move in a visual linear way inside obs(Like a % slider))
    • SetSyncOffset: Sets the sync offset of a source(in ns)
    • SetSourcePosition: Sets the x or y position of a source (in px)
    • SetSourceRotation: Sets the rotation of a source (in degree)
    • SetSourceScale: Sets the scale for x/y or both of a source (For the scaling 1 = original scale)
    • SetTransitionDuration: Sets the length of the currently selected transistion if supported(fade)(in ms)
    • SetGainFilter: Sets the volume gain value inside the gain filter of a source (For the scaling -30 to 30 is a valid range you can work in). This will automatically default to the first gain filter found in a source!
  • Now you can either setup another button/fader by repeating the steps above(except starting the script again) or just close the window to exit the configuration

For a detailed description of most of the commands see the obs-websocket protocol documentation

Device Management

If you run the setup another time after the inital configuration you will get a dialog at startup where you can select if you want to go to the device management (1) or just continue adding new button/fader assignments with the already configured devices.

If you select 1 you have a few options:

  • 1: Move the assignments from one device over to another. This can help when you plug the controller into another USB port and then shows up under a different name (e.g. "Devicename 1" instead of "Devicename")
  • 2: Delete all devices from the database without removing their mapping. This does exactly that and be warned, will cause a device mixup when you add more devices later. You'll be better of using option 3
  • 3: Remove a single device and their assignments.
  • 4: Add a new device. This allows you do add more devices.
  • 5: Skip device configuration. This exits the device management without changing anything and continues with the assignment dialog.

Understanding input scaling

A midi value can be something between 0-127. That is a very limited number.

You will only be asked for Input Scale setup if it's required for the function(SetSourcePosition, SetSourceRotation, SetSourceScale, SetSyncOffset, SetTransitionDuration, SetGainFilter).

The first value you have to enter(lower output value) is the value that will be sent when the fader is sending a 0. The second value you have to enter(higher output value) is the value that will be sent when the fader is sending a 127. The range between the 2 numbers will be interpolated linearly.

Some limitations might apply to the range you can use (see the comments above in the action list above).

Updating MIDItoOBS

As MIDItoOBS is just running from the folder you move/download it into, updating the programm itself is (most of the time) as easy as downloading it again like mentioned in Setup Part 3.

I highly recommend that you do not overwrite you existing files but rather backup the folder as is (including the config.json) and start with the freshly downloaded files in a new folder. Then just copy your config.json from the old backup folder into the new folder. Then try to run it.

It can and will happen from time-to-time that i introduce some changes that make the config now longer work with the new program version. As i don't have a changelog yet (which is definitely on the todo list) there is not really any way for you to know. Sometimes i announce such changes on the very top of this readme file. If it no longer works feel free to open an issue or contact me (See Troubleshooting).

Running MIDItoOBS on another computer in the network:

  • You can change the IP and Port of the device running obs and obs-websocket by modifying the main.py(line 5/6) and setup.py(line 6/7) with a text editor. You might have to create some firewall exceptions for the websocket port on the device running obs-websocket.

Setting up "macros" (optional):

You can assign unlimited different actions to the same button. There is no guided GUI way to do this right now so this requires editing the config. (Sounds harder then it is)

  • Setup the functions as described above on different buttons
  • Now stop the setup.py and open the config(config.json) with a text editor.
  • Change the "msgNoC" value of the buttons you want to combine to the value of the button you want to use. Make sure you have the entry with the right device ID.
  • Here are some pictures for better understanding: Step 1 Step 2
  • Now save and close the config file
  • Start main.py and verify that it works

Using it (!Very important!)

  • If you're a first time use make sure to follow setup steps 1-3
    • You can launch setup.py anytime(as long as main.py is not running) to change the configuration of a single button/fader without reconfiguring the whole controller.
  • Always make sure that obs is running before launching any of the scripts
  • Launch the main.py file (Try double click or the "Run Main.bat" if you are on Windows)
  • The console gives you information when it successfully connects to OBS
  • Also, if there is an error it will be printed out(If you ignore case sensitive fields or the scene doesn't exist)
  • Third, it prints out a message every time you press a button that is setup
  • Now just leave it running in the background
  • To stop the program simply close the window (or CTRL + C)

Troubleshooting

A user has reported that under certain circumstances the script(setup and main) will crash after start on Windows with "ImportError: DLL load failed: The specified module could not be found". If this happens to you, plase install the Visual C++ Redistributable from Microsoft. Make sure you get the x86 version if you are using python 32bit(Which is default) (Download)

If you have any other problem, just open a Github issue, join my Discord Server or DM me @lebaston100 (Twitter/Instagram)

Contributors

I had never imagined that so "many" people would contribute something to the project. Thanks to everyone who submitted a bug report or pull request. Special thanks to:

Tested on/with:

  • Win 10 Build 18363
  • Python 3.8.1:1b293b6
  • obs-studio 24.0.3
  • obs-websocket 4.7.0
  • KORG nanoPAD
  • KORG nanoKONTROL 2 (tested by thatGuyStrike)
  • Behringer FCB-1010 + ESI MidiMate eX (tested by thatGuyStrike)
  • Hercules DJ Control MP3
  • Behringer X-Touch Mini (tested by me-vlad)
  • Arturia MiniLab MKII (tested by moops44). See Issue #17 for notes!
  • Native Instruments Maschine Mk3 (tested by moops44). See Issue #18 for notes!

Let me know if you had success with your device.

About

A script to use one or multiple midi input device(s) to control OBS-Studio functions without wasting keyboard hotkeys (including macro support) from anywhere in the network. Waiting for a nativ implementation since 2017 ;)

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 99.9%
  • Batchfile 0.1%