* normalize bit depth and color for nvenc * fix hls direct * update changelog * add bit depth option to ffmpeg profile
8 lines
104 B
C#
8 lines
104 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum FFmpegProfileBitDepth
|
|
{
|
|
EightBit = 0,
|
|
TenBit = 1
|
|
}
|