Files
ersatztv/ErsatzTV.FFmpeg/Capabilities/FFmpegKnownEncoder.cs
T
Jason DoveandGitHub c18be5559b fix delete old segments (#1536)
* code cleanup

* ignore errors deleting old hls segments
2024-01-04 10:42:04 -06:00

17 lines
363 B
C#

namespace ErsatzTV.FFmpeg.Capabilities;
public record FFmpegKnownEncoder
{
private FFmpegKnownEncoder(string Name) => this.Name = Name;
public string Name { get; }
// only list the encoders that we actually check for
public static IList<string> AllEncoders =>
new[]
{
"h264_amf",
"hevc_amf"
};
}