Extend Stitch2Stream

Send your live equirectangular stream directly into your favourite creative tools. Browse, install, and manage plugins from inside the app or here.

2 plugins available
🎬

AdobeOutput

Output Creator — Free v1.0.0

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.

Protocol: MJPEG over HTTP
Port:     7893
Requires: Adobe Premiere Pro 14+ or After Effects 17+
Author:   Stitch2Stream
🎞

ResolveOutput

Output Creator — Free v1.0.0

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.

Protocol: MJPEG over HTTP
Port:     7894
Requires: DaVinci Resolve 17+ or Fusion 9+
Author:   Stitch2Stream

More plugins coming soon — NDI Output, YouTube VR, Twitch VR, and AI Stitch Pro. Build your own →

Install a plugin in 3 steps

01

Open the marketplace

In Stitch2Stream, click the Plugins button in the toolbar. The Available tab shows all installable plugins for your plan.

02

Select & install

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.

03

Restart & go

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.

Build your own plugin

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.

// IOutputPlugin

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;
};

// manifest.json

{
  "name": "MyPlugin",
  "version": "1.0.0",
  "author": "You",
  "type": "output",
  "requiredTier": "Free",
  "filename": "my_plugin.dll",
  "sha256": "abc123..."
}

All plugins included free
on the Creator plan.

Upgrade to Creator for $10.99/mo and get AdobeOutput, ResolveOutput, and every future plugin at no extra cost.