Multi-destination streaming application that allows you to stream to multiple platforms simultaneously at different bitrates.
- Stream to YouTube, Twitch, Kick, Facebook, and custom RTMP servers
- Multiple output groups with independent encoding settings
- Hardware encoder support (NVENC, QuickSync, AMF, VideoToolbox)
- Profile management with encrypted stream keys
- Real-time stream statistics
- Cross-platform: macOS, Windows, Linux
Run the setup script to install all prerequisites automatically:
macOS / Linux:
git clone https://github.com/billboyles/spiritstream.git
cd spiritstream
./setup.shWindows (PowerShell):
git clone https://github.com/billboyles/spiritstream.git
cd spiritstream
.\setup.ps1The setup script installs: Rust, FFmpeg, platform build tools, and npm dependencies.
After setup completes, restart your terminal and run:
npm run dev # Development mode
npm run build # Production buildDownload the latest release from Releases:
| Platform | File |
|---|---|
| macOS | SpiritStream_x.x.x_aarch64.dmg |
| Windows | SpiritStream_x.x.x_x64-setup.exe |
| Linux | SpiritStream_x.x.x_amd64.AppImage or .deb |
Note: FFmpeg must be installed separately:
- macOS:
brew install ffmpeg - Windows:
winget install ffmpeg - Linux:
sudo apt install ffmpeg
| Requirement | Installation |
|---|---|
| Node.js 18+ | nodejs.org |
| Rust 1.70+ | curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh |
| FFmpeg | See above |
| Platform tools | Tauri Prerequisites |
git clone https://github.com/billboyles/spiritstream.git
cd spiritstream
npm install
npm run buildBuild output: src-tauri/target/release/bundle/
- Create a Profile: Set up your incoming RTMP URL and configure output groups
- Add Stream Targets: Add your streaming platforms with server URLs and stream keys
- Configure Encoding: Choose video encoder, resolution, bitrate, and audio settings
- Start Streaming: Click "Start Stream" to begin broadcasting to all targets
npm run dev # Start development server with hot reload
npm run build # Production build
npm run build:debug # Debug build with symbols
npm run typecheck # Check TypeScript types
npm run check # Check Rust codeISC License - See LICENSE for details.