• Hi and welcome to the Studio One User Forum!

    Please note that this is an independent, user-driven forum and is not endorsed by, affiliated with, or maintained by PreSonus. Learn more in the Welcome thread!

MIDI mapping configuration file location

mcascone

New member
Is there a file that contains the plugin MIDI mapping for S1? Is it unique per song? Is there any way to access it; for backup, and for inspection and re-use? I'm assuming/hoping it's in a standard format of some kind - ideally JSON or more likely, XML.

crossposted from
To view this content we will need your consent to set third party cookies.
For more detailed information, see our cookies page.
 
I finally found something in /Volumes/Macintosh HD/Users/maxc/Library/Application Support/PreSonus/Studio One 6/User Devices/Paint Audio/MIDI Captain.surface.xml. It's pretty interesting!

XML:
<?xml version="1.0" encoding="UTF-8"?>
<ControlSurface>
    <Controls>
        <Control name="controlb0001" title="TSC1" type="button" options="receive public">
            <MidiMessage status="#B0" channel="0" address="#1"/>
        </Control>
        <Control name="controlb0065" title="TSC2" type="button" options="receive public">
            <MidiMessage status="#B0" channel="0" address="#65"/>
        </Control>
        ...
        </Control>
        <Control name="controlb000b" title="PLATE CC" type="knob" options="receive public">
            <MidiMessage status="#B0" channel="0" address="#B"/>
        </Control>
        <Control name="controlb000c" title="WOW CC" type="knob" options="receive public">
            <MidiMessage status="#B0" channel="0" address="#C"/>
        </Control>
    </Controls>
</ControlSurface>
 
Back
Top