Skip to main content

Start At Configuration

info

As of 2023, Samsung states that Tizen TV's are not optimized for .NET applications. Samsung strongly recommends using JS/Web applications instead of C#/.NET applications for TVs. Please check the Lura Player Web SDK

Wievers like to continue watching the video from where they have left. That's where startAt parameter comes in handy. With this parameter, you can specify where the video playback should start from. This parameter empowers users to have a more tailored and efficient video-watching experience by providing them with direct control over where their viewing journey begins.

To configure the starting position of the video in Lura Player, you can use the following configuration.

AttributeTypeDescription
startAtfloatStarting position of the content in seconds.
info

The startAt parameter is applicable exclusively to VOD (Video On Demand) assets and should not be utilized for live streams.

Start At Configuration
using Lura;
using Lura.Unified;
using Tizen.NUI;

// Initialize player
Window window = Window.Instance;
var player = new Player(window);

// Configure with start position at 30 seconds
var config = new Configuration
{
Content = new ContentConfiguration
{
StartAt = 30.0
}
};

// Set configuration
await player.SetConfig(config);
player.Play();