NVIDIA Omniverse streaming library (ovstream + ovstream_utils Python packages)
Project description
NVIDIA ovstream
ovstream is a lightweight C and Python SDK for live streaming Omniverse content, allowing developers to add real-time video streaming to their applications without depending on Kit or Carbonite.
ovstream is the streaming building block of the broader Omniverse libraries effort: pair it with ovrtx (or any other CUDA-buffer producer) to ship interactive rendered content over WebRTC, RTSP, the low-latency native protocol, or local shared-memory in a few lines of code.
[!NOTE] ovstream is currently pre-release software.
Features
- Four transports in one library — WebRTC (browser-friendly), RTSP (industry-standard), native (low-latency StreamSDK), and SHM (same-machine zero-copy). Pick one at runtime, run several simultaneously, no separate builds.
- Zero-copy CUDA buffer streaming — push raw BGRA8 frames directly from CUDA memory; the SDK encodes on the GPU via NVENC.
- Pre-encoded passthrough — stream existing H.264 / H.265 / AV1 bitstreams without re-encoding, for file replay or upstream-encoded sources.
- Bidirectional messaging and input (WebRTC / native / SHM) — receive keyboard, mouse, and Unicode events from connected clients; send messages back.
- Self-contained — no Kit, no Carbonite, no Omniverse app required. The wheel bundles its native dependencies (StreamSDK, GStreamer, the bundled
gstnvencplugin);pip install ovstreamis enough.
Getting Started in Python
Python 3.8 or newer is required.
Install the ovstream wheel, then fetch the example sources (they live in the public repo, not the wheel) and run the first example:
pip install ovstream
git clone https://github.com/NVIDIA-Omniverse/ovstream.git
cd ovstream/examples/python/basic_stream
python main.py
(Or download a release source archive from https://github.com/NVIDIA-Omniverse/ovstream/releases if you don't have git.)
The basic example creates a WebRTC server with signaling port 49100 (the media stream port defaults to 47998), allocates a CUDA buffer, animates a gradient fill, and pushes frames at 60 FPS. Open examples/webrtc_client/index.html in a browser and enter 127.0.0.1:49100 to view the stream.
Pass rtsp, native, or shm as arguments to switch transport — see the examples README for the full menu.
Getting Started in C
The C/C++ examples require CMake and a development environment. On Windows this is provided by Visual Studio 2019 or newer. On Linux (Ubuntu):
sudo apt-get install build-essential cmake
Clone the public repo for the example sources (they're not in the wheel), then build and run the first example using CMake:
git clone https://github.com/NVIDIA-Omniverse/ovstream.git
cd ovstream/examples/c/basic_stream
cmake -B build -DCMAKE_BUILD_TYPE=Release
Then, on Windows:
cmake --build build --config Release
.\build\Release\basic_stream.exe
On Linux:
cmake --build build --config Release
./build/basic_stream
CMake's ovstream_fetch() macro downloads the matching ovstream binary archive from GitHub Releases at configure time. No manual install step is required.
Examples
Further examples using both the C and Python APIs are available in the examples directory. See the individual examples for building and usage instructions.
The Python ovrtx_stream example is the headline "composing two libraries into an app" demo — it loads a USD scene with ovrtx and streams the rendered output through ovstream, end-to-end, with auto-orbiting camera and client input handling.
Releases
The Releases page of this repository contains binary builds for the official releases of the ovstream C library and the corresponding Python wheels. These binaries are provided for the supported platforms:
- Windows x86_64
- Linux x86_64
- Linux aarch64
The libraries require a compatible NVIDIA RTX-capable GPU with a compatible NVIDIA driver on the system. More detailed system requirements can be found at https://docs.omniverse.nvidia.com/dev-guide/latest/common/technical-requirements.html
Documentation
The public C API is fully documented inline in the header files (ovstream.h, ovstream_types.h, ovstream_shm_client.h) shipped under include/ovstream/ inside every release archive — each function carries its argument types, return semantics, thread-safety rules, and lifetime contracts as Doxygen-style comments. The Python API mirrors the C API and is documented via docstrings on the wheel-installed ovstream package (run help(ovstream) after pip install ovstream).
For runnable code, see examples. For AI-coding-agent-friendly task recipes, see skills.
AI Coding Agents
The skills directory contains a series of skills to help AI coding agents understand how to use the API (and they're useful for humans too). Copy this directory to your project and point your agent at it.
Support
https://forums.developer.nvidia.com/c/omniverse/300
Roadmap
To be announced.
Contributing
At this time this project is not open to external contributions. Please use the Support channels above for questions and bug reports.
Authors and acknowledgment
NVIDIA Corporation.
License
The software and materials are governed by the NVIDIA Software License Agreement and the Product-Specific Terms for NVIDIA Omniverse.
This project will download and install additional third-party open source software projects — see THIRD_PARTY_NOTICES.md. Review the license terms of these open source projects before use.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file ovstream-0.3.0-py3-none-win_amd64.whl.
File metadata
- Download URL: ovstream-0.3.0-py3-none-win_amd64.whl
- Upload date:
- Size: 15.5 MB
- Tags: Python 3, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ddec8480c5cb6ff6616550d2d1682ba663f0c45457564b1e6f97e02a94877e27
|
|
| MD5 |
904bf7baaa233e0ce4b64f2aa9aad645
|
|
| BLAKE2b-256 |
7e993ec0dbca1abf658e94cc2e0fe4f906616dc1bd3364a8d0ab73dc966dd4cb
|
File details
Details for the file ovstream-0.3.0-py3-none-manylinux_2_35_x86_64.whl.
File metadata
- Download URL: ovstream-0.3.0-py3-none-manylinux_2_35_x86_64.whl
- Upload date:
- Size: 43.2 MB
- Tags: Python 3, manylinux: glibc 2.35+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b4cf72c294f7e3c67012f0938abec75aae752ffa0ef9260904fe945742fbdcab
|
|
| MD5 |
3768703f8dc154538605a18aa05c4043
|
|
| BLAKE2b-256 |
6289270a41d6f4a45ddd14d2acd24ead6d7150390e0b76209d7524af9b1b0599
|
File details
Details for the file ovstream-0.3.0-py3-none-manylinux_2_35_aarch64.whl.
File metadata
- Download URL: ovstream-0.3.0-py3-none-manylinux_2_35_aarch64.whl
- Upload date:
- Size: 100.2 MB
- Tags: Python 3, manylinux: glibc 2.35+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.4
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
1d9f5a744f69627629ca7e259d1a40cdbdc0632ddfb2da4d1b52c7c2d990cb02
|
|
| MD5 |
995cf7a3c269c276ae2ad8a630b171a1
|
|
| BLAKE2b-256 |
929b1d068d484b353d22ff4060323b0e857def164bddf43d77db8e00380247a0
|