mirror of https://github.com/ErsatzTV/ErsatzTV.git
Browse Source
* save reports from ffmpeg concat process * let ffmpeg determine thread count by default * disable stdin for ffmpeg processespull/122/head
11 changed files with 1878 additions and 20 deletions
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,14 @@ |
|||||||
|
using Microsoft.EntityFrameworkCore.Migrations; |
||||||
|
|
||||||
|
namespace ErsatzTV.Infrastructure.Migrations |
||||||
|
{ |
||||||
|
public partial class Update_FFmpegProfile_ThreadCount : Migration |
||||||
|
{ |
||||||
|
protected override void Up(MigrationBuilder migrationBuilder) => |
||||||
|
migrationBuilder.Sql(@"UPDATE FFmpegProfile SET ThreadCount = 0 WHERE ThreadCount = 4"); |
||||||
|
|
||||||
|
protected override void Down(MigrationBuilder migrationBuilder) |
||||||
|
{ |
||||||
|
} |
||||||
|
} |
||||||
|
} |
||||||
Loading…
Reference in new issue