-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Target VMAF Base (POC - unfinished) * Fix Input Seeeking Frane Inaccuracy (Scene Based Splitting) * Fix Target VMAF Make Target VMAF more reliable * Add Target VMAF Front-end options * Target VMAF UI Translations
- Loading branch information
Showing
17 changed files
with
915 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
using System.Collections.Generic; | ||
using System.Windows.Documents; | ||
|
||
namespace NotEnoughAV1Encodes.Queue | ||
{ | ||
public class ChunkVMAF | ||
{ | ||
public string ChunkName { get; set; } | ||
public string CalculatedQuantizer { get; set; } | ||
public List<double> QValues { get; set; } | ||
public List<double> VMAFValues { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.