Hmm... The interesting part there is the "VFR aware filter".
Meant is simply the mkv video filter for DirectShow which gives
adaptive FR information to DirectShowSource()
Heres the frame rate conversion part of the avisynth script I usually use for vfr mkv->DVD PAL reconversion if source is mostly 24fps...
[...]
DirectShowSource("source/abc.mkv",fps=119.88,convertfps=true)
#Used mkv DS input filter from the mkv package is vfr aware,
#with the given parameters frames are correctly inserted to achieve
#a fixed bitrate of 119.88 even if sources framerate is variable
#(119.88 = lowest common multiple of 23.976 and 29.970)
FDecimate(23.976)
#"Anime" Version of Decimate(),
#drops frames to achieve target framerate
#but tries to select anime dupe frames
AssumeFPS(25)
#slight speedup to 25fps PAL
TimeStretch(tempo=(100.0*25.0)/23.976)
#Correction of Audio length by slight stretching,
#does NOT change pitch but preserves sync
SSRC(48000)
#Ensures 48khz sampling rate for DVD
[...]
AviSynth 3.0 for Linux is still alpha stage. And thats mostly the only reason
for the win partition on one of my desktop pcs... hope that will change eventually.
sigh.