Send your live equirectangular stream directly into your favourite creative tools. Browse, install, and manage plugins from inside the app or here.
Live equirectangular MJPEG preview inside Adobe Premiere Pro 14+ and After Effects 17+. Install the companion CEP panel and see your live stitch stream appear directly in the Premiere monitor panel — no export, no file transfer.
The plugin opens an MJPEG server on port 7893. The companion CEP panel connects automatically when Premiere or After Effects is open and the S2S plugin is running.
Live equirectangular MJPEG preview inside DaVinci Resolve 17+ and Fusion 9+. Open the companion browser panel via Workspace › Scripts › launch_panel or navigate to http://localhost:7894 in any browser for a live side-by-side preview.
The Python companion script launch_panel.py registers the panel inside Resolve's scripting environment automatically on first run.
More plugins coming soon — NDI Output, YouTube VR, Twitch VR, and AI Stitch Pro. Build your own →
In Stitch2Stream, click the Plugins button in the toolbar. The Available tab shows all installable plugins for your plan.
Select a plugin and click Install. On Creator, it's instant. On Free or Starter Pro, click Buy Plugin to add it to your account.
Restart the app. The plugin loads automatically on startup. For Adobe and Resolve plugins, install the companion CEP panel or run the Python script once.
The Stitch2Stream Plugin SDK exposes two pure-virtual C++ interfaces — IStitchPlugin and IOutputPlugin. Implement either interface, compile to a shared library, drop a .manifest.json sidecar next to it, and Stitch2Stream discovers it automatically on startup.
class IOutputPlugin { public: virtual ~IOutputPlugin() = default; virtual std::string name() const = 0; virtual bool initialize() = 0; virtual void sendFrame( const cv::Mat& frame) = 0; virtual void shutdown() = 0; };
{
"name": "MyPlugin",
"version": "1.0.0",
"author": "You",
"type": "output",
"requiredTier": "Free",
"filename": "my_plugin.dll",
"sha256": "abc123..."
}