Class SubtitleTrackInfo
Represents subtitle track metadata from a stream.
public sealed record SubtitleTrackInfo : IEquatable<SubtitleTrackInfo>
- Inheritance
-
SubtitleTrackInfo
- Implements
- Inherited Members
Properties
Index
Gets the subtitle track index.
[JsonPropertyName("index")]
public int Index { get; init; }
Property Value
Language
Gets the subtitle language code, or null if not available.
[JsonPropertyName("language")]
public string? Language { get; init; }
Property Value
LanguageFull
Gets the full subtitle language name, or null if not available.
[JsonPropertyName("language_full")]
public string? LanguageFull { get; init; }
Property Value
Title
Gets the subtitle track title, or null if not available.
[JsonPropertyName("title")]
public string? Title { get; init; }