Skip to content

Commit

Permalink
Merge pull request #5 from Ikalou/vmaf-cmd-fix
Browse files Browse the repository at this point in the history
Fix vmaf command invokation
  • Loading branch information
ThatNerdUKnow authored Apr 24, 2022
2 parents 9df761a + e69f69f commit 56a7fa9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vmaf-gui/Form1.cs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ void vmaf(string resolution,string model,bool psnr,bool ssim)
//string args = "yuv420p "+ resolution +" ./temp/source.yuv ./temp/compressed.yuv .\\model\\"+ model +" --log log.xml";
Array res = resolution.Split(' ');

string args = $"--threads 4 --reference ./temp/source.y4m --distorted ./temp/source.y4m -o log.xml";
string args = $"--threads 4 --reference ./temp/source.y4m --distorted ./temp/compressed.y4m -o log.xml";
/*
if (chkPSNR.Checked)
{
Expand Down

0 comments on commit 56a7fa9

Please sign in to comment.