Files
ersatztv/ErsatzTV.Infrastructure/Migrations/20220216115456_TurnOff_FrameRateNormalization.cs
T
Jason DoveandGitHub 66ab0b3990 use single thread and disable framerate normalization (#639)
* try one thread for everything

* add (unused) framerate filter

* disable framerate normalization by default

* update dependencies
2022-02-16 06:01:28 -06:00

20 lines
469 B
C#

using Microsoft.EntityFrameworkCore.Migrations;
#nullable disable
namespace ErsatzTV.Infrastructure.Migrations
{
public partial class TurnOff_FrameRateNormalization : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.Sql("UPDATE FFmpegProfile SET NormalizeFramerate = 0");
}
protected override void Down(MigrationBuilder migrationBuilder)
{
}
}
}