Dup1 doesn't generate a log for me. It is created, but it always has length 0.
Any advice?

Code: Select all
Dup1(show=true,maxcopies=1,copy=false,threshold=3,log="dup1.log")
Code: Select all
AudioDub(LWLibavVideoSource("0. pan-576p.mp4"), LWLibavAudioSource("0. pan-576p.mp4"))
Dup1(show=true,maxcopies=1,copy=false,threshold=3,log="dup1.log")
Yes, but it's described as output to another program, so I didn't even look into it. Especially since an empty file was created.
Code: Select all
function ReplaceFramesRIFE(clip Source, int N, int X, int "model")
{
# N is number of the frame in Source that needs replacing.
# X is total number of frames to replace
# e.g. (101, 5) would replace 101,102,103,104,105 , by using 100 and 106 as reference points for interpolation
# requires RGB24, RIFE with models
model = default(model, 41)
Trim(Source, N-1, length=1)+Trim(Source, N+X, length=1)
Rife(gpu_thread=1, model=model, factor_num=X+1, factor_den=1, sc=false)
AssumeFPS(Source.FrameRateNumerator, Source.FrameRateDenominator)
Trim(1,X)
#Subtitle("RIFE", align=5) "" # optional label to verify replacement
Source.trim(0,end=N-1) ++ last ++ Source.trim(N+X,0)
}