diff --git a/Sparks_in_Blender_encode.py b/Sparks_in_Blender_encode.py index 45529e4..216ddb4 100755 --- a/Sparks_in_Blender_encode.py +++ b/Sparks_in_Blender_encode.py @@ -24,7 +24,6 @@ def write_line( crf: str, preset: str, infile: str, - outfile: str, outfilesize: float, enctime: int, vmafmean: float, @@ -38,7 +37,6 @@ def write_line( crf (str): CRF used preset (str): Preset used infile (str): Input file name - outfile (str): Output file name outfilesize (float): Size of output file enctime (int): Time to encode vmafmean (float): Mean VMAF score @@ -52,7 +50,6 @@ def write_line( crf, preset, infile, - outfile, outfilesize, enctime, vmafmean, @@ -88,7 +85,6 @@ if __name__ == "__main__": "CRF", "Preset", "Input file", - "Output file", "Output file size (MiB)", "Encode time (s)", "VMAF Score (mean)", @@ -164,7 +160,6 @@ if __name__ == "__main__": crf=crf, preset=preset, infile="Sparks_in_Blender.webm", - outfile=outputfile, outfilesize=outputfilesize, enctime=difftime, vmafmean=vmaf["pooled_metrics"]["vmaf"]["mean"],