Skip to main content
Module: LCKOboe | Version: 0.9.2 | Platforms: Android only

Overview

LCKOboe provides high-performance, low-latency microphone capture on Android using Google’s Oboe audio library. It automatically selects the optimal audio API (AAudio on Android 8.1+, OpenSL ES on older versions).

Supported Channels

ChannelSupportedDescription
GameNoUse FMOD or Wwise for game audio
MicrophoneYesLow-latency microphone capture
VoiceChatNoUse LCKVivox for voice chat

Why Use LCKOboe?

Lower Latency

Significantly lower audio latency compared to Unreal’s audio capture

Optimal API

Automatically uses AAudio when available for best performance

VR Optimized

Designed for Meta Quest and other Android VR headsets

Battery Efficient

Efficient native implementation reduces power consumption

Dependencies

// Add to your .Build.cs
PublicDependencyModuleNames.AddRange(new string[] {
    "LCKOboe",
    "LCKAudio"
});

Requirements

  • Android 5.0+ (API 21+)
  • AAudio support recommended (Android 8.1+, API 27+)
  • RECORD_AUDIO permission

Permissions

Add to your AndroidManifest.xml:
<uses-permission android:name="android.permission.RECORD_AUDIO"/>

Automatic Integration

The plugin automatically:
  1. Detects available audio APIs (AAudio vs OpenSL ES)
  2. Selects optimal configuration for the device
  3. Registers with the LCK audio system

Configuration

Default Settings

SettingValue
Sample Rate48000 Hz
ChannelsMono (1)
FormatFloat32
Performance ModeLowLatency

Project Configuration

For Meta Quest optimization, ensure these settings in your project:
; AndroidEngine.ini
[Audio]
AudioMixerModuleName=AudioMixerAndroid

Performance Characteristics

DeviceAPILatency
Meta Quest 2/3AAudio~20ms
Quest ProAAudio~15ms
Other Android 8.1+AAudio~25ms
Android < 8.1OpenSL ES~40ms
On Meta Quest devices, LCKOboe provides the lowest latency microphone capture available.

Troubleshooting

  1. Verify RECORD_AUDIO permission is granted
  2. Check if another app is using the microphone
  3. Verify microphone hardware is working
  1. Ensure device supports AAudio (Android 8.1+)
  2. Check for other audio apps that might affect performance
  3. Verify Vulkan rendering is enabled
  1. Verify plugin is enabled in .uproject
  2. Check that platform is Android
  3. Look for errors in LogLCKOboe

Log Category

DECLARE_LOG_CATEGORY_EXTERN(LogLCKOboe, Log, All);

See Also