Paolo Velati

Results 3 comments of Paolo Velati

The ffmpeg command for ```ab-av1 vmaf --reference original.mp4 --distorted distorted.x265.mp4``` that I see is ``` ffmpeg -r 24 -i original.mp4 -r 24 -i distorted.x265.mp4 -filter_complex [0:v]format=yuv444p10le,scale=3840:-1:flags=bicubic,setpts=PTS-STARTPTS[dis];[1:v]format=yuv444p10le,scale=3840:-1:flags=bicubic,setpts=PTS-STARTPTS[ref];[dis][ref]libvmaf=n_threads=4:model=version=vmaf_4k_v0.6.1 -f null - ```...

tried directly with the ffmpeg command and the memory leak persists. ``` # ffmpeg -r 24 -i original.mp4 -r 24 -i distorted.x265.mp4 -filter_complex "[0:v]format=yuv444p10le,scale=3840:-1:flags=bicubic,setpts=PTS-STARTPTS[dis];[1:v]format=yuv444p10le,scale=3840:-1:flags=bicubic,setpts=PTS-STARTPTS[ref];[dis][ref]libvmaf=n_threads=4:model=version=vmaf_4k_v0.6.1" -f null - ffmpeg version N-68533-gcc774cd962-static...

using v0.7.12 the commands for ```ab-av1 vmaf --reference original.mp4 --distorted distorted.x265.mp4``` are ``` ffmpeg -r 24 -i original.mp4 -pix_fmt yuv444p10le -vf setpts=PTS-STARTPTS -strict -1 -f yuv4mpegpipe - ffmpeg -r 24...