very minor changes

This commit is contained in:
N00MKRAD 2021-01-11 17:43:35 +01:00
parent 495b7ccd80
commit 01a688512b
3 changed files with 3 additions and 4 deletions

View File

@ -8,7 +8,6 @@ using System.Drawing;
using System.Globalization; using System.Globalization;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Text.RegularExpressions;
using System.Threading.Tasks; using System.Threading.Tasks;
using Utils = Flowframes.AudioVideo.FFmpegUtils; using Utils = Flowframes.AudioVideo.FFmpegUtils;
@ -19,7 +18,7 @@ namespace Flowframes
static string hdrFilter = @"-vf select=gte(n\,%frNum%),zscale=t=linear:npl=100,format=gbrpf32le,zscale=p=bt709,tonemap=tonemap=hable:desat=0,zscale=t=bt709:m=bt709:r=tv,format=yuv420p"; static string hdrFilter = @"-vf select=gte(n\,%frNum%),zscale=t=linear:npl=100,format=gbrpf32le,zscale=p=bt709,tonemap=tonemap=hable:desat=0,zscale=t=bt709:m=bt709:r=tv,format=yuv420p";
static string videoEncArgs = "-pix_fmt yuv420p -movflags +faststart"; static string videoEncArgs = "-pix_fmt yuv420p -movflags +faststart";
static string divisionFilter = "\"crop = trunc(iw / 2) * 2:trunc(ih / 2) * 2\""; static string divisionFilter = "\"crop=trunc(iw/2)*2:trunc(ih/2)*2\"";
static string pngComprArg = "-compression_level 3"; static string pngComprArg = "-compression_level 3";
static string mpDecDef = "\"mpdecimate\""; static string mpDecDef = "\"mpdecimate\"";

View File

@ -9,6 +9,6 @@ namespace Flowframes.Data
class Padding class Padding
{ {
public const int inputFrames = 9; public const int inputFrames = 9;
public const int interpFrames = 8; // TODO: Maybe modify NCNN to accept padding as arg? public const int interpFrames = 8;
} }
} }

View File

@ -61,7 +61,7 @@ namespace Flowframes.Main
if (paused) if (paused)
{ {
Logger.Log("autoenc paused"); //Logger.Log("autoenc paused");
await Task.Delay(100); await Task.Delay(100);
continue; continue;
} }