church_archive_script/Programs/doc/_sources/functions/general/loadallplugins.rst.txt
2023-11-29 16:12:35 +00:00

19 lines
447 B
ReStructuredText

LoadAllPlugins
==============
.. function:: LoadAllPlugins(string path)
:module: std
Loads all native VapourSynth plugins found in the
specified *path*. Plugins that fail to load are
silently skipped.
Beware of Python's escape character, this will fail::
LoadPlugin(path='c:\plugins')
Correct ways::
LoadPlugin(path='c:/plugins')
LoadPlugin(path=r'c:\plugins')
LoadPlugin(path='c:\\plugins\\')