Questions tagged [midi-interface]

28 questions
13
votes
4 answers

Sending MIDI up the USB using Arduino

I'm interested in making an Arduino based MIDI controller to talk to my computer. Looking at other examples of Arduino MIDI (for example, MIDI Output using an Arduino), they all seem to wire up a dedicated 5 pin DIN. Which makes sense as this is the…
interstar
  • 26,048
  • 36
  • 112
  • 180
7
votes
0 answers

send steady midi clock on mac with CoreMIDI

I am working on a small program to 'translate' a jittering incoming MIDI clock to a steady beat. The jittering MIDI clock generates an awful tremolo sound. The idea is to 'listen' to the incoming midi clock and, after determining the tempo, to send…
Rob Keeris
  • 71
  • 4
6
votes
0 answers

inconsistent midi naming when using multiple devices of the same type

I am facing an obscure behaviour of device naming when trying to use multiple USB midi devices of the same type of hardware. As this might be hardware/system/driver related, here is my general setup: host: Windows 8.1 x64 (tested on multiple…
mvo
  • 1,138
  • 10
  • 18
6
votes
3 answers

Can Silverlight communicate with a MIDI instrument?

Can Silverlight communicate with a MIDI instrument connected to the machine running the Silverlight application? In- or out-browser.
Pablo Fernandez
  • 279,434
  • 135
  • 377
  • 622
4
votes
1 answer

Convert MIDI file to list of notes with length and starting time

I am working on a game in Unity that will generate levels from music. I am planning to include simple text files (that don't have to be in a standard format) with the game and parse them to generate the levels. The problem is, I need to be able to…
brendon-ai
  • 517
  • 3
  • 7
  • 20
4
votes
1 answer

Detect if a MIDI interface is connected in Web MIDI API

I am experimenting with the Web Midi API in Chrome/OS X. So far I get good results but I am wondering: Is there a way to detect if a MIDI interface is connected/disconnected WHILE an application is running? The way it works for now is to restart the…
solitud
  • 683
  • 5
  • 15
2
votes
1 answer

How to test for MIDI drivers present

I tested my MIDI app in the Windows XP mode virtual PC and it crashed immediately. Tests on several VirtualBox XP machines were ok. When I remote debug the application it appears to crash in the startup code before it reaches any line of (visible)…
Arnold
  • 4,578
  • 6
  • 52
  • 91
2
votes
2 answers

RtMidi MIDI control signals to Ableton Live

I'm trying to write a C++ app using RtMidi to send control signals via my Tascam FireOne MIDI Controller to Ableton Live. So far, I have it successfully sending Note On + Off Signals, Volume Up + Down Signals, etc. via my MIDI Controller to my…
kylestephens
  • 326
  • 5
  • 15
2
votes
1 answer

EAAccessoryManager does not read MFI accessory

I wanted to make an app that communicates with MIDI interface accessories for iOS. I bought an MFI licensed device (iConnectMidi), plugged in, and created a simple project that calls [[EAAccessoryManager sharedAccessoryManager] connectedAccessories]…
Sterling
  • 161
  • 9
1
vote
1 answer

How to get real time of a midi event

I am reading a midi file with this parser. But I cannot read the real time. MidiFile midiFile = new MidiFile("/Jenkins.mid"); var ticksPerQuarterNote = _midiFile.TicksPerQuarterNote; foreach (MidiTrack track in midiFile.Tracks) { foreach…
Pascal
  • 11
  • 1
1
vote
0 answers

GTK3/poll complex multithreading issue

I am coding a fully functional synthesizer on LINUX. Right now it is able to detect a midi keyboard and play from it with customizable sound,for sound management I am using SDL2_audio with its callback functionality. But unfortunately the GUI is…
Vladouch
  • 165
  • 1
  • 7
1
vote
0 answers

Python equivalent to AudioKit in Swift?

I am trying to find a way to visualize MIDI, in which the user much like a DAW, can see the MIDI events and edit them with a Mouse. I know in Swift, people have used Audio Kit but I am not sure if there is an equivalent for Python. I have tried to…
1
vote
0 answers

How to create a nameable MIDI port with Universal Windows Platform?

How to create a nameable MIDI port with Universal Windows Platform (Anniversary Update on Windows 10)? It seems that https://blogs.windows.com/buildingapps/2016/09/21/midi-enhancements-in-windows-10/#r5BB7v0LGxqUvY4g.97 does not give an answer on…
codelab
  • 406
  • 3
  • 14
1
vote
2 answers

Mackie HUI MIDI message that will resend all track information? Pro Tools

I am looking for a MIDI message to send Pro Tools via the HUI MIDI spec that will trigger PT to resend all track information (vol/mute/pan/automation state/track-name). The HUI spec is not publicly available in it's entirety (though theageman has…
Youngin
  • 261
  • 4
  • 14
1
vote
0 answers

is it possible to input android program using electronic keyboard?

I'm trying to make composition that can get data from electoronic keyboard(synthesizer, digital piano). So I'm wondering, is it possible and how can i get the data from it. If you have an expierence with programing composition for computer, i would…
kangfox
  • 143
  • 1
  • 1
  • 10
1
2