VideoTrack

data class VideoTrack(val id: String?, val label: String?, val language: String?, val width: Int?, val height: Int?) : Track

Constructors

Link copied to clipboard
constructor(id: String?, label: String?, language: String?, width: Int?, height: Int?)

Properties

Link copied to clipboard
val height: Int?
Link copied to clipboard
open override val id: String?

Unique among the class, used to check which track is used. VideoTrack and AudioTrack can have the same id

Link copied to clipboard
open override val label: String?
Link copied to clipboard
open override val language: String?
Link copied to clipboard
val width: Int?