VideoMetadata

@Stable
data class VideoMetadata(var title: String? = null, var artist: String? = null, var duration: Long? = null, var width: Int? = null, var height: Int? = null, var bitrate: Long? = null, var frameRate: Float? = null, var mimeType: String? = null, var audioChannels: Int? = null, var audioSampleRate: Int? = null)

Represents metadata information for a video file. All properties are nullable as metadata might not be available for all video sources.

Constructors

Link copied to clipboard
constructor(title: String? = null, artist: String? = null, duration: Long? = null, width: Int? = null, height: Int? = null, bitrate: Long? = null, frameRate: Float? = null, mimeType: String? = null, audioChannels: Int? = null, audioSampleRate: Int? = null)

Properties

Link copied to clipboard
var artist: String?
Link copied to clipboard
var audioChannels: Int?
Link copied to clipboard
var audioSampleRate: Int?
Link copied to clipboard
var bitrate: Long?
Link copied to clipboard
var duration: Long?
Link copied to clipboard
var frameRate: Float?
Link copied to clipboard
var height: Int?
Link copied to clipboard
var mimeType: String?
Link copied to clipboard
var title: String?
Link copied to clipboard
var width: Int?