All Projects → cemolcay → AUSequencer

cemolcay / AUSequencer

Licence: other
(WIP) MIDI Sequencer Audio Unit

Programming Languages

Objective-C++
1391 projects
swift
15916 projects
objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to AUSequencer

MIDISequencerAUv3
A great start point for making AUv3 MIDI sequencer apps.
Stars: ✭ 24 (-7.69%)
Mutual labels:  midi, audio-unit, midi-sequencer, auv3
AUParamsApp
An AUv3 MIDI plugin. See the blog post
Stars: ✭ 24 (-7.69%)
Mutual labels:  midi, auv3
MIDITapeRecorder
AUv3 MIDI Tape Recorder
Stars: ✭ 91 (+250%)
Mutual labels:  midi, auv3
auapp
Simple example of an AUv3 MIDI app
Stars: ✭ 18 (-30.77%)
Mutual labels:  midi, auv3
Audiokit
Swift audio synthesis, processing, & analysis platform for iOS, macOS and tvOS
Stars: ✭ 8,827 (+33850%)
Mutual labels:  midi, audiokit
webaudio-synth
WebAudio Polyphonic Synthesizer
Stars: ✭ 83 (+219.23%)
Mutual labels:  midi
music embedding
A package for representing music data based on music theory
Stars: ✭ 19 (-26.92%)
Mutual labels:  midi
oddvoices
An indie singing synthesizer
Stars: ✭ 4 (-84.62%)
Mutual labels:  midi
teensy-midi-looper
teensy midi loop recorder
Stars: ✭ 30 (+15.38%)
Mutual labels:  midi
Adlplug
FM Chip Synthesizer — OPL & OPN — VST/LV2/Standalone
Stars: ✭ 249 (+857.69%)
Mutual labels:  midi
BSchaffl
MIDI groove quantizer LV2 plugin
Stars: ✭ 28 (+7.69%)
Mutual labels:  midi
midi2img
MIDI to image and image to MIDI conversion scripts
Stars: ✭ 48 (+84.62%)
Mutual labels:  midi
midiomatic
A collection of MIDI filter, generator and processor plugins
Stars: ✭ 23 (-11.54%)
Mutual labels:  midi
Pedalino
Smart wireless MIDI foot controller for guitarists and more.
Stars: ✭ 105 (+303.85%)
Mutual labels:  midi
midiplayer
Play MIDI file right in your browser with the WebMIDIAPI
Stars: ✭ 53 (+103.85%)
Mutual labels:  midi
Chataigne
Artist-friendly Modular Machine for Art and Technology
Stars: ✭ 251 (+865.38%)
Mutual labels:  midi
from-data-to-sound
🎵 Simple Node.js script for transforming data to a MIDI file
Stars: ✭ 33 (+26.92%)
Mutual labels:  midi
arduino-midi-footswitch
USB MIDI Pedal built with Arduino
Stars: ✭ 24 (-7.69%)
Mutual labels:  midi
osmid
osmid is a tool to bridge MIDI and OSC. It is currently in use in Sonic Pi
Stars: ✭ 63 (+142.31%)
Mutual labels:  midi
Ensembles
A digital arranger workstation powered by FluidSynth
Stars: ✭ 312 (+1100%)
Mutual labels:  midi

AUSequencer

An example project/playground for a custom Audio Unit MIDI Sequencer that you can edit the steps (including the step count and the MIDI events (note, pitch, cc) of each step) and work with both Audiobus MIDI and AKMIDI in Ableton Link sync. Also, a future base for MIDI sequencer AUv3 plugin.

Main idea is creating an AudioUnit within an AKNode and initialize Audiobus audio sender port with that audio unit. Also, we are going to need a pair of Audiobus MIDI sender and receiver ports as well.

In the render loop of the AU, we are going to calculate the beat by Ableton Link time calculation utils.

When we advance the next beat, we are going to pull the step data from sequencer (which we can edit while sequencer is playing) and send the MIDI data of the step with either CoreMIDI (AKMIDI) or Audiobus MIDI according to Audiobus' coreMIDISendingEnabled property which returns true when user sets up an Audiobus session with our app.

In that way, we could bring the AudioKit, Audiobus, Ableton Link and AUv3 concepts together and hopefully create a MIDI Sequencer more useful than AudioToolbox'es MusicPlayer/MusicSequencer/MusicTrack API's.

You are going to need AudioKit and Audiobus pods with a pod install as well as LinkKit of Ableton Link, which you are going to add manually due to the privacy of the SDK.

In this example, I'm going to implement an arpeggiator which works by either MIDI keyboard commands or sequencing the MIDI notes which basically automating the MIDI Keyboard commands.

Arpeggiator will be halfstep based. If it has 4 steps with values (0, +2, -1, +4), if you press C4 on MIDI keyboard than it will produce (C4 + 0 = C4, C4 + 2 = D4, C4 - 1 = B3 and C4 + 4 = E4). If you put two steps to the sequencer with C4 and D4 than it will produce (1st step = C4, D4, B3, E4, 2nd step = D4, E4, C#4, F#4).

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].