Table of Contents

Class SubtitleTrackInfo

Namespace
TorBoxSDK.Models.Stream
Assembly
TorBoxSDK.dll

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

int

Language

Gets the subtitle language code, or null if not available.

[JsonPropertyName("language")]
public string? Language { get; init; }

Property Value

string

LanguageFull

Gets the full subtitle language name, or null if not available.

[JsonPropertyName("language_full")]
public string? LanguageFull { get; init; }

Property Value

string

Title

Gets the subtitle track title, or null if not available.

[JsonPropertyName("title")]
public string? Title { get; init; }

Property Value

string