HolyWu
23rd January 2012, 18:48
Hi there. Sorry if this question has already been answered somewhere. If so, please kindly drop me a link. :thanks:
Firstly, here is A.avs script:
FFVideoSource("foo.mkv")
denoised = NLMeansCL(h=0.9)
ContraSharpening(denoised, last)
Trim(43157, 43876)
f3kdb(ditherC=0, keep_tv_range=true)
Output is a 30 seconds 720p24 video. Encode A.avs with the following x264 command-line and get encoding speed of 2.66 fps:
x264 --preset veryslow --tune film --crf 18 --keyint 240 --min-keyint 24 --bframes 3 --ref 8 --no-fast-pskip --colormatrix bt709 --sar 1:1
Then, here is B.avs script:
FFVideoSource("foo.mkv")
denoised = AVISource("denoise.avs")
ContraSharpening(denoised, last)
Trim(43157, 43876)
f3kdb(ditherC=0, keep_tv_range=true)
and denoise.avs script:
FFVideoSource("foo.mkv")
NLMeansCL(h=0.9)
Source is the same video. Encode B.avs with the same x264 command-line as above and get encoding speed of 6.01 fps. :eek:
I have also tried denoising with MDegrain2(no prefiltering) and got the same effect: 3.18 fps v.s. 6.63 fps.
So why is there a big speed difference between these two manner :confused:
AviSynth version is official 2.6.0 ST.
Firstly, here is A.avs script:
FFVideoSource("foo.mkv")
denoised = NLMeansCL(h=0.9)
ContraSharpening(denoised, last)
Trim(43157, 43876)
f3kdb(ditherC=0, keep_tv_range=true)
Output is a 30 seconds 720p24 video. Encode A.avs with the following x264 command-line and get encoding speed of 2.66 fps:
x264 --preset veryslow --tune film --crf 18 --keyint 240 --min-keyint 24 --bframes 3 --ref 8 --no-fast-pskip --colormatrix bt709 --sar 1:1
Then, here is B.avs script:
FFVideoSource("foo.mkv")
denoised = AVISource("denoise.avs")
ContraSharpening(denoised, last)
Trim(43157, 43876)
f3kdb(ditherC=0, keep_tv_range=true)
and denoise.avs script:
FFVideoSource("foo.mkv")
NLMeansCL(h=0.9)
Source is the same video. Encode B.avs with the same x264 command-line as above and get encoding speed of 6.01 fps. :eek:
I have also tried denoising with MDegrain2(no prefiltering) and got the same effect: 3.18 fps v.s. 6.63 fps.
So why is there a big speed difference between these two manner :confused:
AviSynth version is official 2.6.0 ST.