Skip to main content

Title 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

The title of a video is one of the most important elements for attracting and retaining viewers, as it often serves as the first impression for potential viewers. In technical terms, the video title is a metadata field that is used to identify and describe the content of a video. It is a crucial component of video SEO and can greatly impact the discoverability and viewership of a video.

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

AttributeTypeDescription
titlestringTitle of the content.
Title Configuration
using Lura;
using Lura.Unified;
using Tizen.NUI;

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

// Configure with title
var config = new Configuration
{
Content = new ContentConfiguration
{
Title = "Title of the video"
}
};

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