Configure findface-facenapi to Use PluginsΒΆ

To configure findface-facenapi to use plugins, do the following:

  1. Put a plugin into a directory of your choice. You can use several directories to store plugins.

  2. Open the findface-facenapi configuration file.

    sudo vi /etc/findface-facenapi.ini
    

    Warning

    The findface-facenapi.ini content must be correct Python code.

  3. Uncomment the plugins_dirs parameter and specify the comma-separated list of plugin directories.

    plugins_dirs                   = '/etc/findface/plugins/video, /etc/findface/plugins/html'
    
  4. Uncomment the plugins_enabled parameter and specify the comma-separated list of plugins to load, or an asterisk (*) to load all plugins.

    plugins_enabled                = '*'