* add scaling behavior - crop * fix ffmpeg version check on windows (snapshot) * update dependencies
9 lines
116 B
C#
9 lines
116 B
C#
namespace ErsatzTV.Core.Domain;
|
|
|
|
public enum ScalingBehavior
|
|
{
|
|
ScaleAndPad = 0,
|
|
Stretch = 1,
|
|
Crop = 2
|
|
}
|