From ad59ac458b49f8897875e8987ebf2ee0fe1f2733 Mon Sep 17 00:00:00 2001 From: Reto Kromer Date: Fri, 27 Jan 2017 15:38:38 +0100 Subject: [PATCH] move ref --- index.html | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/index.html b/index.html index 8012aa0..b083ad6 100644 --- a/index.html +++ b/index.html @@ -1011,7 +1011,7 @@ foreach ($file in $inputfiles) {

Creates a QCTools report

ffprobe -f lavfi -i "movie=input_file:s=v+a[in0][in1],[in0]signalstats=stat=tout+vrep+brng,cropdetect=reset=1:round=1,idet=half_life=1,split[a][b];[a]field=top[a1];[b]field=bottom,split[b1][b2];[a1][b1]psnr[c1];[c1][b2]ssim[out0];[in1]ebur128=metadata=1,astats=metadata=1:reset=1:length=0.4[out1]" -show_frames -show_versions -of xml=x=1:q=1 -noprivate | gzip > input_file.qctools.xml.gz

-

This will create an XML report for use in QCTools for a video file with one video track and one audio track.

+

This will create an XML report for use in QCTools for a video file with one video track and one audio track. See also the QCTools documentation.

ffprobe
starts the command
-f lavfi
tells ffprobe to use the Libavfilter input virtual device [more]
@@ -1026,7 +1026,6 @@ foreach ($file in $inputfiles) {
>
redirects the standard output (the data made by ffprobe about the video)
input_file.qctools.xml.gz
names the zipped data output file, which can be named anything but needs the extension qctools.xml.gz for compatibility issues
-

See also the QCTools documentation.

@@ -1042,7 +1041,7 @@ foreach ($file in $inputfiles) {

Creates a QCTools report

ffprobe -f lavfi -i "movie=input_file,signalstats=stat=tout+vrep+brng,cropdetect=reset=1:round=1,idet=half_life=1,split[a][b];[a]field=top[a1];[b]field=bottom,split[b1][b2];[a1][b1]psnr[c1];[c1][b2]ssim" -show_frames -show_versions -of xml=x=1:q=1 -noprivate | gzip > input_file.qctools.xml.gz

-

This will create an XML report for use in QCTools for a video file with one video track and NO audio track.

+

This will create an XML report for use in QCTools for a video file with one video track and NO audio track. See also the QCTools documentation.

ffprobe
starts the command
-f lavfi
tells ffprobe to use the Libavfilter input virtual device [more]
@@ -1057,7 +1056,6 @@ foreach ($file in $inputfiles) {
>
redirects the standard output (the data made by ffprobe about the video)
input_file.qctools.xml.gz
names the zipped data output file, which can be named anything but needs the extension qctools.xml.gz for compatibility issues
-

See also the QCTools documentation.