Files
ersatztv/ErsatzTV.Infrastructure/Data/Configurations/FFmpegProfileConfiguration.cs
T
Jason DoveandGitHub 9b3c24559d add deinterlace option to ffmpeg profile (#709)
* update dependencies

* add option to deinterlace video
2022-03-18 10:30:56 -05:00

19 lines
564 B
C#

using ErsatzTV.Core.Domain;
using Microsoft.EntityFrameworkCore;
using Microsoft.EntityFrameworkCore.Metadata.Builders;
namespace ErsatzTV.Infrastructure.Data.Configurations;
public class FFmpegProfileConfiguration : IEntityTypeConfiguration<FFmpegProfile>
{
public void Configure(EntityTypeBuilder<FFmpegProfile> builder)
{
builder.ToTable("FFmpegProfile");
builder.Property(p => p.NormalizeFramerate)
.HasDefaultValue(false);
builder.Property(p => p.DeinterlaceVideo)
.HasDefaultValue(true);
}
}