* update dependencies * use ffmpeg to resize images * use ffprobe to check for animated logos and watermarks * remove last use of imagesharp
7 lines
133 B
C#
7 lines
133 B
C#
namespace ErsatzTV.FFmpeg;
|
|
|
|
public record FrameSize(int Width, int Height)
|
|
{
|
|
public static FrameSize Unknown = new(-1, -1);
|
|
}
|