Frontend Controls
This page shows you how to interact with a running Streampixel session from your frontend—muting audio, changing resolution, reading stats, or sending custom messages to Unreal.
Frontend Controls
Object
Purpose
🚦 Access Patterns
let pixelStreaming; // store globally or in React ref
let UIControl; // store globally or in React ref
const { appStream, pixelStreaming: ps, UIControl: ui } =
await StreamPixelApplication({ appId: "<id>", AutoConnect: true });
pixelStreaming = ps;
UIControl = ui;🔑 Common Runtime Actions
What you want to do
Code
🖥️ Example: Building a Mini Control Panel (React)
🖥️ Example: Building a Mini Control Panel (React)
Last updated