Enum SubtitleType
Represents the type of subtitle, which defines how the subtitle data is structured or formatted.
Namespace: FFmpeg.Subtitles
Assembly: FFmpeg.dll
Syntax
public enum SubtitleType
Fields
| Name | Description |
|---|---|
| ASS | Formatted text subtitle, typically in ASS/SSA format. The ASS field is set by the decoder and is considered authoritative. The BitmapData and Text fields may contain approximations of the subtitle. |
| Bitmap | A bitmap subtitle, where the subtitle is stored as an image. The BitmapData field will be populated with the bitmap data. |
| None | No subtitle is present. |
| Text | Plain text subtitle. The Text field is set by the decoder and is considered authoritative. The ASS and BitmapData fields may contain approximations of the subtitle. |