Video-Like Replay
Enhance your Session Replay experience with video-like playback. Configure screenshot quality and capture frequency to see exactly what your users experienced during their sessions.
Overview
Quick Start
import Luciq, {
SessionReplay,
CapturingMode,
ScreenshotQuality,
} from '@luciq/react-native';
// Configure video-like replay
SessionReplay.setEnabled(true);
SessionReplay.setCapturingMode(CapturingMode.frequency);
SessionReplay.setScreenshotCaptureInterval(1000); // 1 screenshot per second
SessionReplay.setScreenshotQuality(ScreenshotQuality.normal);
// Initialize SDK
Luciq.init({
token: 'APP_TOKEN',
invocationEvents: [/* ... */],
});Capturing Modes
Navigation Mode (Default)
Interactions Mode
Supported Interactions
Frequency Mode
Screenshot Capture Interval
Timer Reset Behavior
Screenshot Quality
Quality Profiles
Estimated Screenshots per Session
Configuration Timing
Recommended: Before SDK Initialization
Runtime Configuration
Privacy & Masking
Platform Notes
Best Practices
Recommended Configurations
Code Examples
API Reference
SessionReplay.setCapturingMode()
SessionReplay.setScreenshotQuality()
SessionReplay.setScreenshotCaptureInterval()
Migration Guide
Last updated