Avisynth - DeJitter plugin
Posted: Wed Jul 03, 2024 9:12 am
I'm trying to create a workflow that DeJitters (using AviSynth Dejitter plugin: http://www.avisynth.nl/users/vcmohan/De ... Jitter.htm) drone footage. I've tried several things but can't get it to work. What I have setup is:
- A/V Media node
- Custom AviSynth Node:
# Load the DeJitter plugin
LoadPlugin("%s_ffastrans_dir%\processors\AVS_plugins\DeJitter\DeJitter.dll")
# Use the decoded media from the A/V Media Decoder node
m_clip = _ffas_video
# Apply the DeJitter filter
m_clip = DeJitter(m_clip, jmax=32, th=80, wsyn=10, extend=true, uselast=false)
# Return the processed clip
Return m_clip
- XDCAMHD Node
- Folder
However I keep getting error's when feeding a file into the workflow. I've had these two errors:
- XDCAM-HD@DESKTOP-K2ABVOD: Validate: Script error: Invalid arguments to function 'DeJitter'.
- XDCAM-HD@DESKTOP-K2ABVOD: Validate: Cannot load a 32 bit DLL in 64 bit Avisynth: 'C:/FFAStrans/processors/AVS_plugins/DeJitter/DeJitter.dll' (Solved when forcing the 32-bit dependencies.)
Any idea on how to get this working?
- A/V Media node
- Custom AviSynth Node:
# Load the DeJitter plugin
LoadPlugin("%s_ffastrans_dir%\processors\AVS_plugins\DeJitter\DeJitter.dll")
# Use the decoded media from the A/V Media Decoder node
m_clip = _ffas_video
# Apply the DeJitter filter
m_clip = DeJitter(m_clip, jmax=32, th=80, wsyn=10, extend=true, uselast=false)
# Return the processed clip
Return m_clip
- XDCAMHD Node
- Folder
However I keep getting error's when feeding a file into the workflow. I've had these two errors:
- XDCAM-HD@DESKTOP-K2ABVOD: Validate: Script error: Invalid arguments to function 'DeJitter'.
- XDCAM-HD@DESKTOP-K2ABVOD: Validate: Cannot load a 32 bit DLL in 64 bit Avisynth: 'C:/FFAStrans/processors/AVS_plugins/DeJitter/DeJitter.dll' (Solved when forcing the 32-bit dependencies.)
Any idea on how to get this working?