Audiobus: Use your music apps together.

What is Audiobus?Audiobus is an award-winning music app for iPhone and iPad which lets you use your other music apps together. Chain effects on your favourite synth, run the output of apps or Audio Units into an app like GarageBand or Loopy, or select a different audio interface output for each app. Route MIDI between apps — drive a synth from a MIDI sequencer, or add an arpeggiator to your MIDI keyboard — or sync with your external MIDI gear. And control your entire setup from a MIDI controller.

Download on the App Store

Audiobus is the app that makes the rest of your setup better.

AUM - Beathawk question (Solved)

edited June 2019 in General App Discussion

I have Beathawk loaded in AUM as an audio unit and I want it to start recording midi when I press play in AUM.

I have read that CC#119 is record in Beathawk, so my question is, can I setup AUM to send this to Beathawk when I press play or can it be done using Mozaic or Streambyter?

Comments

  • edited June 2019

    @White said:
    I have Beathawk loaded in AUM as an audio unit and I want it to start recording midi when I press play in AUM.

    I have read that CC#119 is record in Beathawk, so my question is, can I setup AUM to send this to Beathawk when I press play or can it be done using Mozaic or Streambyter?

    With Mozaic for sure.
    @onHostStart
    SendmidiCC ..,

    Or you can send cc119 from any midi source to BH and AUM, and assign AUM transport “play” to respond to cc119

  • @recccp said:

    @White said:
    I have Beathawk loaded in AUM as an audio unit and I want it to start recording midi when I press play in AUM.

    I have read that CC#119 is record in Beathawk, so my question is, can I setup AUM to send this to Beathawk when I press play or can it be done using Mozaic or Streambyter?

    With Mozaic for sure.
    @onHostStart
    SendmidiCC ..,

    Or you can send cc119 from any midi source to BH and AUM, and assign AUM transport “play” to respond to cc119

    Thanks for the reply 😊

    I tried to use Mozaic and sendmidicc, the syntax is:

    @OnHostStart
    SendMIDICC chan, cc, value, optionaldelay
    @End

    But I have no idea what values to inset, I tried with

    @OnHostStart
    SendMIDICC 01, 119, 119
    @End

    And send it to midispy, but it doesn't receive anything?

  • edited June 2019

    @White said:

    @recccp said:

    @White said:
    I have Beathawk loaded in AUM as an audio unit and I want it to start recording midi when I press play in AUM.

    I have read that CC#119 is record in Beathawk, so my question is, can I setup AUM to send this to Beathawk when I press play or can it be done using Mozaic or Streambyter?

    With Mozaic for sure.
    @onHostStart
    SendmidiCC ..,

    Or you can send cc119 from any midi source to BH and AUM, and assign AUM transport “play” to respond to cc119

    Thanks for the reply 😊

    I tried to use Mozaic and sendmidicc, the syntax is:

    @OnHostStart
    SendMIDICC chan, cc, value, optionaldelay
    @End

    But I have no idea what values to inset, I tried with

    @OnHostStart
    SendMIDICC 01, 119, 119
    @End

    And send it to midispy, but it doesn't receive anything?

    SendMidiCC 0, 119, 127 //cc119 on 1st channel

    Just tried and it worked. But for some reason can’t send the AUM project from my phone.

  • @recccp said:

    @White said:

    @recccp said:

    @White said:
    I have Beathawk loaded in AUM as an audio unit and I want it to start recording midi when I press play in AUM.

    I have read that CC#119 is record in Beathawk, so my question is, can I setup AUM to send this to Beathawk when I press play or can it be done using Mozaic or Streambyter?

    With Mozaic for sure.
    @onHostStart
    SendmidiCC ..,

    Or you can send cc119 from any midi source to BH and AUM, and assign AUM transport “play” to respond to cc119

    Thanks for the reply 😊

    I tried to use Mozaic and sendmidicc, the syntax is:

    @OnHostStart
    SendMIDICC chan, cc, value, optionaldelay
    @End

    But I have no idea what values to inset, I tried with

    @OnHostStart
    SendMIDICC 01, 119, 119
    @End

    And send it to midispy, but it doesn't receive anything?

    SendMidiCC 0, 119, 127 //cc119 on 1st channel

    Just tried and it worked. But for some reason can’t send the AUM project from my phone.

    It worked, thanks for the help 😊👍

  • You can add few more lines to stop recording when AUM stops.

    @OnHostStart
    SendMIDICC 0, 119, 127
    @End

    @OnHostStop
    SendMIDICC 0, 119, 0
    @End

  • @recccp said:
    You can add few more lines to stop recording when AUM stops.

    @OnHostStart
    SendMIDICC 0, 119, 127
    @End

    @OnHostStop
    SendMIDICC 0, 119, 0
    @End

    Super, I will try that, thanks 😊

Sign In or Register to comment.