Title Configuration
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.
Attribute | Type | Description |
---|---|---|
title | String | Title of the content. |
val luraConfiguration = LuraConfiguration(
...
content = LuraContent(
media = listOf(
...
),
title = "Title of the video",
...
),
...
)
playerView = findViewById(R.id.lura_player_view)
player = LuraPlayer(context = this, playerView = playerView)
player.setConfig(luraConfiguration)