CI Swift 5.4 AUv3 License: MIT

SoundFonts App

🥳 Check it out on Apple’s App Store

App shown in landscape orientation on iPhone

This is an iOS (and soon-to-be macOS!) application that acts as a polyphonic synthesizer. It uses anAVAudioUnitSampler instance to generate the sounds for touched keys. The sounds that are available come from sound font files such as those available online for free (and of variable quality). There are four sound font files that are bundled with the application, and more can be added via the iCloud integration.

App shown in portrait orientation on iPhone

NOTE: AVAudioUnitSampler can and will crash if the SoundFont patch it is using for rendering does not conform to spec. Unfortunately, there is no way to insulate the app from this so it too will crash along with AVAudioUnitSampler.

I have also curated a small collection of SoundFont files that I found useful and/or interesting: Sample SoundFonts. If you visit the site from your iOS device and touch one of the links, you can add the fire directly to the SoundFonts application.

Here are some additional sites that have curated or custom SF2 files that should work with the application:

AUv3 App Extensions

Starting with v2.0, the application now contains an AUv3 app extension that can be loaded by other music applications that support AUv3 audio units, such as GarageBand and AUM.

AUM hosting SoundFonts AUv3 component

The app also includes two AUv3 effects: reverb, and delay. You can use them directly in the application, or add them to your signal processing chain in an AUv3 host such as AUM.

App effects controls

I have additional AUv3 effects available:

User Interface

There is a bar between the list views and the keyboard. This is called the “info bar” since it shows the name of the current preset. It is also the location for most of the controls for the app. On smaller devices, some of the control buttons are hidden until revealed by touching the unfilled triangle at the far right of the bar. Below is an image of the additional controls that appear:

SoundFonts info bar

Here are some of the features available:

  • Switch between the patches view (image above) and a favorites view (see below) by swiping left/right on the upper view with two touches.
  • Double-tapping the patch name in the info bar above the keyboard will also switch the upper view
  • You can touch the labels at either end of the black bar to change the range of the keyboard. In the image above, the first key is at “C4” and the last key shown is “G5”. You can go as low as “C0” and as high as “C9”.
  • You can also swipe with a finger on back bar to change the keyboard range
  • Swipe right on a patch name to make it a favorite (same to unfavorite). Favorited patches have a star next to their name. You can also swipe to edit or hide a preset.
  • Add/Remove sound font files. In the “presets view” press the “+” button to bring up a file picker. Locate a sound font file to add from a location on your device, or from your iCloud drive or Google Drive. Added files can be removed via a left-swipe on the sound font name.
  • Adjust visibility of individual presets either by a swipe or as a whole via the “list” button.

Notes on Adding From Cloud Drives

  • Files app (iCloud) — long-press on the file you want to import, select “Share” option. You should then be able to select “Copy to SoundFonts” from the sharing sheet that appears.

  • Google Drive — touch the “•••” button next to the file name and then choose “Open in” from the list of available options. You should then be able to select “Copy to SoundFonts” from the sharing sheet that appears.

  • Dropbox — touch on the circled “•••” button below the file you want to import. Choose “Copy Link” option that appears. Select “Open In…” and then “Copy to SoundFonts” from the sharing sheet that appears.

Unfortunately as far as I can tell there is no way to import directly from a web page with a native SF2 URL link. One must first have the file available on a cloud drive before it can be imported via the iOS sharing sheet.

Favorites

Double-tapping on the info bar switches between the fonts view and the the “favorites”. This view shows all of the presets that have been “faved” or “starred”. Pressing on a favorite will make its associated preset active. You can also reorder them by long-touching one and moving it to a new location among the others. There are various parameters one can adjust for a favorite that remain independent of the original preset it derived from. These include:

Favorite configuration editor

  • the first note of the keyboard when the favorite becomes active
  • a custom tuning to apply
  • pitch bend range
  • custom gain
  • custom stereo panning
  • reverb and delay settings (app only)

Also, you can have more than one favorite for the same preset, each with its own collection of settings.

Tags

You can create custom “tags” and assign them to sound fonts in your collection. Selecting a tag acts as a filter, only showing the sound fonts are a member of the active tag. This can be an easy and effective way to organize your sound fonts files by categories or even by performance or song.

Settings

There are a variety of customization settings available.

Settings configuration editor

The app supports MIDI connectivity via direct wired connection or via Bluetooth MIDI.

You can also control how the app adds new SF2 files. By default, the app will copy the SF2 file into the app’s sandbox. This is the safest since it guarantees that the app will always be able to locate and use the file. However, it does take up additional space on your device. Disabling the “Copy SF2 files when adding” option means the app will instead obtain a secure bookmark reference to the file’s location. This can be somewhere else on your device – including the Files app for iCloud files – or on a supported external USB storage device. However, these files may not always be available. Hopefully the code does the right thing in these situations, but the secure bookmarking API is not exactly intuitive and clear on all points. That said, it appears to work great for me so far with my devices and iCloud and I have also tested it using an external USB drive without any issues so far.

Importing and Exporting App Configuration

The Settings panel above provides a way to export the existing app configuration to a location outside of the app’s private sandbox. You can visit this location using the Files app, selecting “On My…” location, and scrolling to find the folder for SoundFonts. The exported configuration files all end with “plist” extension (there are currently three of them). The export operation will also make copies of any installed SF2 files. You can replicate a SoundFonts setup on another device by simply copying everything that is exported to the SoundFonts folder on the new device and then choose “Import all SF2 files…” action in the Settings panel.

Dependencies

There are no external dependencies. I wrote the code in Xcode 10.1, targeting iOS 12.1. The Xcode version has increased as has the Swift version, but it still works on iOS 12.1 devices.

The keys of the keyboard are painted by the code found in KeyboardRender.swift. This was generated by the PaintCode application. The PaintCode file is Keyboard.pcvd, but it is not part of the build process and PaintCode is not necessary to build.

Embedded Sound Fonts

The repository comes with four SoundFont files, though the largest one – FluidR3_GM – is too large to store natively on Github so it has been broken into three files: FluidR3_GM.sf2.1, FluidR3_GM.sf2.2, and FluidR3_GM.sf2.3. I could move it to LFS but I do not want to mess with that. Instead, I have an Xcode build phaase that should concatenate the individual files into one big one before packaging them all up into a resource in the SF2Files target.

API Documentation

If you are interested, there is some developer documentation available.

Code Guide

The application and the three AUv3 app extensions are found in the SoundFontsApp folder. There you will find:

  • App – the application code and resources
  • DelayAU – the AUv3 component for the delay effect that you can use in an AUv3 host app
  • ReverbAU – the AUv3 component for the reverb effect that you can use in an AUv3 host app
  • SoundFontsAU – the AUv3 component for the SoundFonts instrument that lets you use SoundFonts functionality in an AUv3 host app such as AUM.

The app and the AUv3 app extensions share code via the SoundFontsFramework framework. This holds most of the UI definitions and nearly all of the SF2 handling code. This is all in Swift.

Parsing SF2 files is done in an Objective-C framework with C++ code that represents entities defined the in the SoundFont v2 specification. It is called SoundFontInfoLib. Its original purpose was to provide a fast way to extract the preset information from an SF2 file, but it has grown to understand all of the components in the SoundFont v2 spec. There is also the beginnings of my own custom SF2 audio rendering facility which will one day replace SoundFonts’ dependency on Apple’s own AVAudioUnitSampler.

Finally, the embedded SF2 files that come with the app in the App Store are packaged up in the SF2Files framework. As mentioned above, there is special-handling of the FluidR3_GM SF2 file which is performed in a custom build phase for this framework. It does nothing more than concatenate the three parts together to make a whole SF2 file which the build system then puts into the framework.