Files
ersatztv/ErsatzTV.FFmpeg/SubtitleMethod.cs
Jason Dove aca441074e subtitle improvements with hls direct (#1290)
* wip: hls direct subtitles

* convert picture subtitles with hls direct

* use mp4 for hls direct to support more codecs

* disable subtitle conversion in hls direct

* fix tests

* update changelog
2023-06-04 12:29:47 -05:00

10 lines
101 B
C#

namespace ErsatzTV.FFmpeg;
public enum SubtitleMethod
{
None,
Burn,
Convert,
Copy
}