Platforms to show: All Mac Windows Linux Cross-Platform

AVAudioUnitComponentMBS class

Type Topic Plugin Version macOS Windows Linux iOS Targets
class AVFoundationNode MBS AVFoundation Plugin 15.3 ✅ Yes ❌ No ❌ No ✅ Yes All
The AVAudioUnitComponent class provides details about an audio unit such as: type, subtype, manufacturer, and location.
Example
// Needs OS X 10.10 or newer
dim m as new AVAudioUnitComponentManagerMBS

dim a() as AVAudioUnitComponentMBS = m.allComponents

for each c as AVAudioUnitComponentMBS in a
dim d as AVAudioComponentDescriptionMBS = c.audioComponentDescription
'List.AddRow c.Name, c.ManufacturerName, c.LocalizedTypeName, c.VersionString, d.componentType+" "+d.componentSubType

// we look for the mixer
// AUMixer Apple Mixer 1.6.0 aumx smxr

if d.componentType = "aumx" and d.componentSubType = "smxr" then
dim aa as new AVAudioUnitMBS(d)
MsgBox aa.Name
end if

next

User tags can be added to the AVAudioUnitComponent which can be queried later for display.
This is an abstract class. You can't create an instance, but you can get one from various plugin functions.

This class has no sub classes.

Some methods using this class:

Some events using this class:

Some examples using this class:


The items on this page are in the following plugins: MBS AVFoundation Plugin.


AVAudioUnitComponentManagerMBS   -   AVAudioUnitDelayMBS


The biggest plugin in space...