Search and replace target (in all widgets)

I'd like to know if it's possible to replace "midi:SessionKiano" (in all widgets that have this target) with something else. Thank you!

You could use a text editor to do some search and replace in the session file. Or you can change the target without modifying the session with a custom module:

module.exports = {

    oscOutFilter: (data)=>{

        if (data.host === 'midi' && data.port === 'SessionKiano') {
            data.port = 'SomethingElse'
        }

        return data
    }
    
}
1 Like