* add subtitle mode setting * start to add subtitle support * cuda test * move subtitle settings from ffmpeg profile to channel * fix image-based subtitles * experimental wip * subtitle fixes
10 lines
102 B
C#
10 lines
102 B
C#
namespace ErsatzTV.FFmpeg;
|
|
|
|
public enum StreamKind
|
|
{
|
|
Audio,
|
|
Video,
|
|
Subtitle,
|
|
All
|
|
}
|