From 2223ef04e139376e8920e04bb2e3dd579797af93 Mon Sep 17 00:00:00 2001 From: Brandon Pina <32885853+Withenex@users.noreply.github.com> Date: Fri, 25 Sep 2020 23:16:43 -0500 Subject: [PATCH 1/2] Create readme.md --- readme.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 readme.md diff --git a/readme.md b/readme.md new file mode 100644 index 0000000..e111bb8 --- /dev/null +++ b/readme.md @@ -0,0 +1,7 @@ +# VMAF-GUI +![](https://img.shields.io/badge/license-MIT-green) +## About +VMAF is a tool developed by Netflix to grade the quality of a compressed video file in comparison to the Original. However, VMAF is only available through the commandline or as an extension to FFMPEG. If you're like me, you find the functionality of VMAF very useful but very time consuming and confusing to use at first. This tool I have built simply adds a gui to the program to make it easy to use. + +## Build +Using visual studio Just click the .sln file then compile for your system. In the folder with your binaries, you'll have to provide your own copy of ffmpeg, vmaf, and the model files for ffmpeg in a subfolder named model. I couldn't figure out how to get VMAF to output the score to stdout so currently the score is only available through the generated log.txt when the program is run. From aafef07078a84e70c41757ba31db5ad5845868f0 Mon Sep 17 00:00:00 2001 From: Brandon Pina <32885853+Withenex@users.noreply.github.com> Date: Sat, 26 Sep 2020 00:54:59 -0500 Subject: [PATCH 2/2] Update readme.md --- readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/readme.md b/readme.md index e111bb8..d288964 100644 --- a/readme.md +++ b/readme.md @@ -1,5 +1,5 @@ # VMAF-GUI -![](https://img.shields.io/badge/license-MIT-green) + ## About VMAF is a tool developed by Netflix to grade the quality of a compressed video file in comparison to the Original. However, VMAF is only available through the commandline or as an extension to FFMPEG. If you're like me, you find the functionality of VMAF very useful but very time consuming and confusing to use at first. This tool I have built simply adds a gui to the program to make it easy to use.