Description 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
Video descriptions are an important component of video content, serving as an additional source for attracting and retaining viewers, as it often serves as the second impression for potential viewers.
To configure the description of the video in Lura Player, you can use the following configuration.
| Attribute | Type | Description |
|---|---|---|
| description | string | Description of the content. |
Description Configuration
using Lura;
using Lura.Unified;
using Tizen.NUI;
// Initialize player
Window window = Window.Instance;
var player = new Player(window);
// Configure with description
var config = new Configuration
{
Content = new ContentConfiguration
{
Description = "Lorem ipsum dolor sit amet, consectetur adipiscing elit"
}
};
// Set configuration
await player.SetConfig(config);
player.Play();