Skip to content

Instantly share code, notes, and snippets.

@mhamilt
mhamilt / PrintAUs.swift
Last active February 18, 2019 16:43
Print all Audio Unit Effects in Swift
//==============================================================================
// Print all installed audio unit effects in Swift
// Handy in for debugging in a Swift console app
//==============================================================================
import Foundation
import AVFoundation
//==============================================================================
var availableAudioUnits = [AVAudioUnitComponent]()
//==============================================================================
func updateAudioUnitList()