All Projects → krevis → Midiapps

krevis / Midiapps

Licence: bsd-3-clause
MIDI apps for Mac OS X: MIDI Monitor and SysEx Librarian.

Programming Languages

swift
15916 projects

Labels

Projects that are alternatives of or similar to Midiapps

Wxwidgets
wxWidgets is a free and open source cross-platform C++ framework for writing advanced GUI applications using native controls.
Stars: ✭ 3,994 (+718.44%)
Mutual labels:  cocoa
Githubupdates
Cocoa framework to install application updates from GitHub releases.
Stars: ✭ 393 (-19.47%)
Mutual labels:  cocoa
Romplayer
AudioKit Sample Player (ROM Player) - EXS24, Sound Font, Wave Player
Stars: ✭ 445 (-8.81%)
Mutual labels:  midi
Sentry Cocoa
The official Sentry SDK for iOS, tvOS, macOS, watchOS
Stars: ✭ 370 (-24.18%)
Mutual labels:  cocoa
Control Surface
Arduino library for creating MIDI controllers and other MIDI devices.
Stars: ✭ 377 (-22.75%)
Mutual labels:  midi
Vgmtrans
VGMTrans - Video Game Music Translator
Stars: ✭ 417 (-14.55%)
Mutual labels:  midi
Coteditor
Lightweight Plain-Text Editor for macOS
Stars: ✭ 4,129 (+746.11%)
Mutual labels:  cocoa
Swiftai
SwiftAI, write Swift code smart. SwiftAI can generate Model class from JSON now. Codable and HandyJSON is supported. More features will be add.
Stars: ✭ 470 (-3.69%)
Mutual labels:  cocoa
Midiwriterjs
♬ A JavaScript library which provides an API for programmatically generating and creating expressive multi-track MIDI files and JSON objects.
Stars: ✭ 381 (-21.93%)
Mutual labels:  midi
Open Stage Control
Libre and modular OSC / MIDI controller
Stars: ✭ 436 (-10.66%)
Mutual labels:  midi
Hedron
Perform live shows with your three.js creations
Stars: ✭ 372 (-23.77%)
Mutual labels:  midi
Segmentedprogressbar
Snapchat / Instagram Stories like progress indicator
Stars: ✭ 376 (-22.95%)
Mutual labels:  cocoa
Bitmidi.com
🎹 Listen to free MIDI songs, download the best MIDI files, and share the best MIDIs on the web
Stars: ✭ 422 (-13.52%)
Mutual labels:  midi
Realm Tasks
To Do app built with Realm, inspired by Clear for iOS
Stars: ✭ 369 (-24.39%)
Mutual labels:  cocoa
Fluentui Apple
UIKit and AppKit controls for building native Microsoft experiences
Stars: ✭ 459 (-5.94%)
Mutual labels:  cocoa
Element
Element Audio Plugin Host
Stars: ✭ 354 (-27.46%)
Mutual labels:  midi
Sendmidi
Multi-platform command-line tool to send out MIDI messages
Stars: ✭ 411 (-15.78%)
Mutual labels:  midi
Midi2lr
An application and plugin to remotely control Lightroom with a MIDI controller
Stars: ✭ 485 (-0.61%)
Mutual labels:  midi
Qlcplus
Q Light Controller Plus
Stars: ✭ 467 (-4.3%)
Mutual labels:  midi
Seaglass
A truly native Matrix client for macOS - written in Swift/Cocoa, with E2E encryption support
Stars: ✭ 428 (-12.3%)
Mutual labels:  cocoa

What is this?

MIDI Monitor is a Mac OS X application for monitoring MIDI data as it goes in and out of the computer.

SysEx Librarian is a Mac OS X application for sending and receiving MIDI system exclusive (aka sysex) messages.

This is the source code for the two applications. You do not need any of this if you just want to use the apps. You need the source if you want to play with the code, customize the application, or use parts of the code in your own project.

The source code is Open Source under the BSD license. See LICENSE for the legal details.

The project is currently intended to be used with an up-to-date Xcode version, like Xcode 12.4 (with the MacOS 11.1 SDK). If you need to run it on an earlier Xcode, try checking out older revisions.

How to build

  1. git submodule update --init --recursive
  2. Open MIDIApps.xcworkspace with Xcode.
  3. Open Configurations/Snoize-Signing.xcconfig and change DEVELOPMENT_TEAM to the Team ID of your Apple Developer account. See the file for more details.
  4. In the "Scheme" popup menu in the toolbar, select either MIDI Monitor or SysEx Librarian.
  5. Build and run!

What's inside

Your source tree should look like this:

  • Applications
    • MIDIMonitor
    • SysExLibrarian
  • Configurations
  • Frameworks
    • SnoizeMIDI
    • SnoizeMIDISpy
  • Third Party
  • Updates

Applications/MIDIMonitor Applications/SysExLibrarian

The source for the two apps. The project files are MIDIMonitor.xcodeproj and SysExLibrarian.xcodeproj; open them with Xcode.

Both apps are Cocoa, and are written in Swift.

The apps rely on the other frameworks, described below.

Frameworks/SnoizeMIDI

A framework containing code for dealing with CoreMIDI in a Cocoa app:

  • Finding MIDI devices, sources, and destinations
  • Creating "streams" of input and output data
  • Hooking them up to inputs and outputs
  • Parsing incoming MIDI data into separate messages

This framework is used by both apps. You can use it in your own apps as well.

Frameworks/SnoizeMIDISpy

This project builds two things: A CoreMIDI driver, and a framework.

The CoreMIDI driver can "spy" on the MIDI sent to any destination in the system by any app. (See the MIDIDriverEnableMonitoring() function in CoreMIDIServer/MIDIDriver.h for more details.) The driver can then pass the MIDI data to another application.

The framework is used by apps that want to spy. It manages the communication between the app and the driver, and provides the app with an easy way to install the CoreMIDI driver when necessary.

This code is currently only used by MIDI Monitor, but it could be useful in other contexts. MIDI Monitor contains some code to channel the "spy" MIDI data into the rest of the SnoizeMIDI stream system, so it acts just like any other MIDI source.

The driver is written in C++, and the framework is C and Objective-C. You should be able to easily use the code from an application.

Configurations

Contains .xcconfig files used to coordinate build settings across all the Xcode projects.

Third Party, Updates

Contains the git submodule for Sparkle (the ubiquitous app-auto-update framework) and the server-side files to make it work.

If you don't see the Sparkle submodule, do a git submodule update --init --recursive.

Questions?

Please contact Kurt Revis [email protected] with any questions.

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].