Selur's Little Message Board
[HELP] vapoursynth: No module named validate - Printable Version

+- Selur's Little Message Board (https://forum.selur.net)
+-- Forum: Hybrid - Support (https://forum.selur.net/forum-1.html)
+--- Forum: Problems & Questions (https://forum.selur.net/forum-3.html)
+--- Thread: [HELP] vapoursynth: No module named validate (/thread-4262.html)



vapoursynth: No module named validate - srwalter - 12.11.2025

If I run any job that involves vapoursynth, it will fail with "CRASHED" at the encoding stage.  vapoursynth is working for me outside of hybrid.  If I launch the script preview, I see this error:

Failed to evaluate the script:
Python exception: No module named 'validate'
Traceback (most recent call last):
File "src/cython/vapoursynth.pyx", line 3378, in vapoursynth._vpy_evaluate
File "src/cython/vapoursynth.pyx", line 3379, in vapoursynth._vpy_evaluate
File "/tmp/tempPreviewVapoursynthFile14_09_31_254.vpy", line 11, in
import validate
ModuleNotFoundError: No module named 'validate'


Where is the validate module supposed to come from?

FYI, I'm running on Arch Linux using the AppImage.  Vapoursynth is installed from the AUR.  If I modify the script to not reference "validate" then I can run the script manually with vspipe, no problem.


RE: vapoursynth: No module named validate - Selur - 12.11.2025

Scripts that Hybrid uses and expects to be present, are all here:
https://github.com/Selur/VapoursynthScriptsInHybrid/

Quote:FYI, I'm running on Arch Linux using the AppImage.
Happy to see someone is using it. Smile

Cu Selur


RE: vapoursynth: No module named validate - srwalter - 15.11.2025

I put those files in my ~/.opt/vapoursynth/vsscripts, and that seems to have fixed it!  Thanks!