Hybrid calls:
"C:\PROGRA~1\Hybrid\32bit\avs2yuv.exe" "C:\Users\Administrator\Downloads\Dragon Pilot\encodingTempSynthSkript_02_21_36_7710.avs" -csp I444 -o - | "C:\PROGRA~1\Hybrid\64bit\x265.exe" --preset slow --input - --output-depth 10 --y4m --profile main444-10 --crf 23.50 --qpfile "C:\Users\ADMINI~1\DOWNLO~1\DRAGON~1\[Hybrid][Asenshi] Hisone to Masotan - 01v2 [1D196CCD]_02_21_36_7710_07.qp" --aq-mode 3 --aq-strength 0.80 --range limited --colormatrix bt709 --output "C:\Users\ADMINI~1\DOWNLO~1\DRAGON~1\02_21_36_7710_08.265"
which in itself looks fine to me.
Avisynth script that is used is:
SetMemoryMax(1536)
SetMTMode(5,8) # changing MT mode
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\LSMASHSource.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\Deen1b1.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\flash3kyuu_deband.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\masktools2.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\VariableBlur.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\warpsharp.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\RgTools.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\MosquitoNR.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\Deen.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\aWarpSharp.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\SangNom2.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\fturn-26.dll")
Import("C:\Program Files\Hybrid\32bit\avisynthPlugins\LimitedSharpenFasterMod.avs")
Import("C:\Program Files\Hybrid\32bit\avisynthPlugins\EdgeCleaner.avs")
Import("C:\Program Files\Hybrid\32bit\avisynthPlugins\EdgeSmoothFast.avs")
# loading source: C:\Users\Administrator\Downloads\Dragon Pilot\[Asenshi] Hisone to Masotan - 01v2 [1D196CCD].mkv
# input luminance scale tv
LWLibavVideoSource("C:\Users\Administrator\Downloads\Dragon Pilot\[Asenshi] Hisone to Masotan - 01v2 [1D196CCD].mkv",cache=false,stacked=true,format="YUV444P16",repeat=true)
# current resolution: 1280x720
# color modifications
SetMTMode(2) # changing MT mode
Levels(0,0.98,255,0,255)
# Dithering from 16 to 8bit for DeenNew
f3kdb_dither(stacked=true,input_depth=16)
# current luminance scale is TV-scale
# assuming clip to be Rec709
# selecting Rec709 as matrix
ConvertToYV12(interlaced=false, matrix="Rec709")
a = last
g_mask = mt_lut("x 128 >= 255 x 16 <= 0 x 16 - 255 * 112 / ? ?").mt_invert()
filtering = Deen1b1_Deen(mode="a2d",borderfix=true)
mt_merge(a, filtering, g_mask)
# sharpening
LSFmod()
# deringing
MosquitoNR(strength=30)
EdgeCleaner(hot=true)
# anti-aliasing
EdgeSmoothFast(strength=60,hiQ=true,twoway=true)
# CUSTOM SCRIPT PART - position: line darkening - START
function linedarkeningCustom(clip clp) {
last=clp
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\Msmooth.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\MSharpen.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\RgTools.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\gradfun2db.dll")
LoadPlugin("C:\Program Files\Hybrid\32bit\avisynthPlugins\FluxSmooth.dll")
LoadPlugin("C:\PROGRA~1\Hybrid\32bit\AVISYN~1\gradfun2db.dll")
#Msmooth(threshold=3,strength=2,chroma=true,mask=false)
MSharpen(threshold=17,strength=20,mask=false)
}
# CUSTOM SCRIPT PART - position: linedarkening - START
linedarkeningCustom() #loading custom script content
# debanding
GradFun2db(thr=1.5)
ConvertToRGB32(matrix="Rec709")
distributor()
return last
-> Does the Avisynth preview work as it should?
Seeing that you use a custom addition, does the getting stuck part also happen when you don't use the custom addition?
(No clue how MSharpen works with AvisynthMT in Mode 2.)
What happens when you call the above call in a Windows command prompt?
Cu Selur
Ps.: As a side note, be aware that you convert your 10bit 4:4:4 source to 8bit 4:2:0 and then back to 4:4:4, so there isn't any gain from using 4:4:4 as input.