Plugin Gallery
Here we will be providing both the source code of plugins and their ready-to-use distributions for convenience.
Note: The provided examples are compatible with Pexip Infinity version 32
.
The only breaking change moving from v31
to v32
is in the way of how custom
button icons are specified.
If you need a v31-compatible plugin, please download and adjust the source code accordingly.
// 31
icon: string | {custom: string};
// 32
type CustomIcon = {main: string; hover: string};
icon: string | {custom: CustomIcon};
Recording plugin example
recording_plugin_source_code.zip