Add TIFF output, additional pix fmts for some encoders

This commit is contained in:
N00MKRAD
2024-01-09 15:49:47 +01:00
parent b6293a1940
commit 74f107492a
7 changed files with 82 additions and 50 deletions

View File

@@ -1,8 +1,4 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Collections.Generic;
using static Flowframes.Data.Enums.Encoding;
namespace Flowframes.Data
@@ -20,5 +16,16 @@ namespace Flowframes.Data
public string OverideExtension { get; set; } = "";
public List<string> QualityLevels { get; set; } = new List<string> ();
public int QualityDefault { get; set; } = 0;
public string Name
{
get
{
return FfmpegName.IsEmpty() ? Codec.ToString().Lower() : FfmpegName;
}
set
{
FfmpegName = value;
}
}
}
}