LMT Full Mode

LMT Compact Mode

The Live Match Tracker (LMT) is an integrated module that displays live match data and statistics in real time. It provides comprehensive match tracking with the ability to switch between compact and full display modes, and supports video streaming capabilities.
The Live Match Tracker module enables:
This module requires proper Sportradar entity configuration and can be enhanced with adapter integration for additional features.
srEntityId string required
Sportradar entity ID for the match. Must be configured in the moderation tool for the channel.
Live Match Tracker will only appear if there are active insights available for the configured match.
lmtVariant 'disabled' | 'compact' | 'full' optional
Controls the Live Match Tracker display mode. Default is 'disabled'.
'compact' - Shows condensed match information'full' - Shows comprehensive match details'disabled' - Completely hides the trackerThe compact variant provides essential match information in a space-efficient layout, perfect for integrations where screen real estate is limited or when you want to provide a quick match overview without overwhelming the interface.
Use Cases:
Compact LMT Setup:
SIR('addWidget', '#virtual-stadium-container', 'virtualStadium', {
// ... existing widget configuration
lmtVariant: 'compact'
});The full variant provides comprehensive match tracking with detailed statistics, player information, and advanced analytics. This mode offers the complete Live Match Tracker experience with all available features and data visualization.
Use Cases:
Full LMT Setup:
SIR('addWidget', '#virtual-stadium-container', 'virtualStadium', {
// ... existing widget configuration
lmtVariant: 'full'
});Required LMT Variant: full (video features are only available in full mode)
JWT Requirements:
'av' in scope claimscope: 'av vs'For detailed information on setting up authentication and obtaining the required JWT token with the 'av' scope, see the authentication documentation.
enableLiveFeed boolean required
Enables video streaming capabilities.
Video Streaming Setup:
SIR('addWidget', '#virtual-stadium-container', 'virtualStadium', {
// ... existing widget configuration (with 'av' scope)
enableLiveFeed: true // Enable video streaming
});enableStreamLcp boolean optional
Enables video replay capabilities.
Video Replay Setup:
SIR('addWidget', '#virtual-stadium-container', 'virtualStadium', {
// ... existing widget configuration (with 'av' scope)
enableStreamLcp: true // Enable highlights (optional)
});disableScoreboard boolean optional
Hides the scoreboard component in the header.

disablePitchClock boolean optional
Disables the Pitch Clock component.

LMT Not Appearing:
srEntityId is set in moderation toollmtVariant is not set to 'disabled'Video Not Loading:
enableLiveFeed is set to trueDisplay Mode Issues:
lmtVariant configurationDebug Mode:
SIR('addWidget', '#virtual-stadium-container', 'virtualStadium', {
lmtVariant: 'full',
dbg: true, // Enable debug logging
// ... other configuration
});Enable debug mode (dbg: true) to see detailed console logs for troubleshooting LMT issues.