
Research
/Security News
Weaponizing Discord for Command and Control Across npm, PyPI, and RubyGems.org
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
@capgo/capacitor-audio-session
Advanced tools
This capacitor plugin allows iOS applications to get notified audio about interrupts & route changes (for example when a headset is connected), and also query and override the audio device in use.
This plugin works on iOS only.
This plugin is a port of https://github.com/saghul/cordova-plugin-audioroute and allows iOS applications to get notified about audio session interruptions and route changes (for example when a headset is connected). To query and override the audio device in use is also supported.
npm install @capgo/capacitor-plugin-audiosession
npx cap sync
For now this plugin works only in Capacitor 4.0+.
currentOutputs()
overrideOutput(...)
addListener('routeChanged', ...)
addListener('interruption', ...)
iOS-only plugin to query and control the audio session output and listen to route changes and interruptions.
currentOutputs() => Promise<AudioSessionPorts[]>
Get the current active audio output routes.
On web and non-iOS platforms, this resolves to an empty array.
Returns: Promise<AudioSessionPorts[]>
overrideOutput(type: OutputOverrideType) => Promise<OverrideResult>
Override the current audio output route.
Use speaker
to force playback through the built-in speaker, or
default
to restore the system-selected route.
Param | Type | Description |
---|---|---|
type | OutputOverrideType | The desired output override type. |
Returns: Promise<OverrideResult>
addListener(eventName: 'routeChanged', listenerFunc: RouteChangeListener) => Promise<PluginListenerHandle>
Listen for audio route changes (e.g. headset connected/disconnected).
Param | Type | Description |
---|---|---|
eventName | 'routeChanged' | The route change event name. |
listenerFunc | RouteChangeListener | Callback invoked with the route change reason. |
Returns: Promise<PluginListenerHandle>
addListener(eventName: 'interruption', listenerFunc: InterruptionListener) => Promise<PluginListenerHandle>
Listen for audio session interruptions (e.g. incoming call) and their end.
Param | Type | Description |
---|---|---|
eventName | 'interruption' | The interruption event name. |
listenerFunc | InterruptionListener | Callback invoked with the interruption type. |
Returns: Promise<PluginListenerHandle>
Prop | Type |
---|---|
remove | () => Promise<void> |
Result of an output override request.
{ success: boolean; message: string; }
Output override type.
default
: Use the system-selected route.speaker
: Force playback through the built-in speaker.'default' | 'speaker'
Listener called when the audio route changes.
(reason: RouteChangeReasons): void
Listener called when the audio session is interrupted or ends.
(type: InterruptionTypes): void
Members | Value |
---|---|
AIR_PLAY | 'airplay' |
BLUETOOTH_LE | 'bluetooth-le' |
BLUETOOTH_HFP | 'bluetooth-hfp' |
BLUETOOTH_A2DP | 'bluetooth-a2dp' |
BUILT_IN_SPEAKER | 'builtin-speaker' |
BUILT_IN_RECEIVER | 'builtin-receiver' |
HDMI | 'hdmi' |
HEADPHONES | 'headphones' |
LINE_OUT | 'line-out' |
Members | Value |
---|---|
NEW_DEVICE_AVAILABLE | 'new-device-available' |
OLD_DEVICE_UNAVAILABLE | 'old-device-unavailable' |
CATEGORY_CHANGE | 'category-change' |
OVERRIDE | 'override' |
WAKE_FROM_SLEEP | 'wake-from-sleep' |
NO_SUITABLE_ROUTE_FOR_CATEGORY | 'no-suitable-route-for-category' |
ROUTE_CONFIGURATION_CHANGE | 'route-config-change' |
UNKNOWN | 'unknown' |
Members | Value |
---|---|
BEGAN | 'began' |
ENDED | 'ended' |
MIT
FAQs
This capacitor plugin allows iOS applications to get notified audio about interrupts & route changes (for example when a headset is connected), and also query and override the audio device in use.
We found that @capgo/capacitor-audio-session demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.
Security News
Socket now integrates with Bun 1.3’s Security Scanner API to block risky packages at install time and enforce your organization’s policies in local dev and CI.
Research
The Socket Threat Research Team is tracking weekly intrusions into the npm registry that follow a repeatable adversarial playbook used by North Korean state-sponsored actors.