Files
ersatztv/ErsatzTV.FFmpeg/Capabilities/FFmpegKnownFormat.cs
T
Jason DoveandGitHub 132466b3d3 add avisynth script support to all local libraries (#2612)
* detect avisynth demuxer

* cache ffmpeg capabilities

* check for working avisynth

* scan avs files in all local libraries

* update changelog
2025-11-07 20:48:54 -06:00

20 lines
471 B
C#

using System.Diagnostics.CodeAnalysis;
namespace ErsatzTV.FFmpeg.Capabilities;
[SuppressMessage("ReSharper", "IdentifierTypo")]
[SuppressMessage("ReSharper", "StringLiteralTypo")]
public record FFmpegKnownFormat
{
public static readonly FFmpegKnownFormat AviSynth = new("avisynth");
private FFmpegKnownFormat(string Name) => this.Name = Name;
public string Name { get; }
public static IList<string> AllFormats =>
[
AviSynth.Name
];
}