Skip to main content

pylibobs

Python bindings for libobs — the core C library of OBS Studio.

Lets Python scripts and apps drive libobs directly: initialize OBS, build scenes, configure encoders, mix audio, and record / stream — all without OBS Studio's UI running.

Status: beta. The public API is feature-complete and covered by tests. Reference counting semantics match OBS 32's obs_*_get_ref() model.


Why?

Existing options:

  • obspython runs inside OBS only — you can't pip install it or use it from a normal Python app.
  • obsws-python / simpleobsws talk to OBS via WebSocket — requires OBS to be running, and only exposes what the WebSocket API allows.

pylibobs links libobs directly (via cffi), so your Python process is the OBS host.


License

Copyright (C) 2026 Jonata Bolzan Loss and contributors.

pylibobs is licensed under GPL v2 or later, inherited from libobs. See LICENSE for the full text.

The published wheels bundle libobs's compiled binaries (also GPLv2+), so the wheel as distributed is covered by GPLv2+. Anything you build on top of pylibobs must be GPL-compatible if you redistribute it. Personal use carries no obligation.


Installation

pip install pylibobs

That's it on Windows / macOS / Linux. The wheel ships with bundled libobs binaries (libobs plus its plugin DLLs and data files, sourced from the official OBS Studio release on PyPI's build server). You don't need to install OBS Studio.

If you're installing from sdist (rare — only when no wheel is published for your platform), or you want to use a system-installed OBS, the loader falls back through:

  1. $LIBOBS_PATH environment variable (explicit override)
  2. Bundled libs inside the wheel — pylibobs/_libs/<platform>/<arch>/
  3. ctypes.util.find_library("obs")
  4. Well-known OBS Studio install paths

Maintainers / contributors can refresh the bundled libs by running:

python scripts/fetch_libs.py                  # current platform
python scripts/fetch_libs.py --all            # every platform
python scripts/fetch_libs.py --version 32.1.2 # pin OBS version

This downloads libobs from the official OBS GitHub release. The _libs/ tree is .gitignored and only populated during wheel builds.


Quick start

import time
from pylibobs import (
    OBSContext, OBSData, Source, Scene, Output,
    VideoEncoder, AudioEncoder,
)

with OBSContext() as obs:
    obs.set_video(width=1920, height=1080, fps_num=60)
    obs.set_audio()
    obs.load_modules()

    scene = Scene.create("main")
    cap = Source.create("monitor_capture", "Desktop", {"monitor": 0})
    scene.add(cap)

    venc = VideoEncoder.create("obs_x264", "video", {"crf": 23, "preset": "veryfast"})
    aenc = AudioEncoder.create("ffmpeg_aac", "audio", {"bitrate": 192})

    out = Output.create("ffmpeg_muxer", "rec", {"path": "out.mkv"})
    out.set_video_encoder(venc)
    out.set_audio_encoder(aenc)
    out.start()

    time.sleep(10)
    out.stop()

See examples/ for full recording and streaming scripts.

pylibobs-studio (tkinter, stdlib only)

examples/pylibobs_studio.py is a complete OBS-style desktop application built on nothing but the Python standard library:

python examples/pylibobs_studio.py

Features:

Pane What it does
Live preview libobs's D3D11 renderer draws directly into a tkinter Frame via its native HWND (Frame.winfo_id()Display.from_window(hwnd, w, h)). No Qt, no GTK, no extra deps.
Scenes Add / remove scenes; selecting one routes it to the program output.
Sources Per-scene list; add via a type-picker dialog populated from enum_input_types(), with auto-launched monitor/window/file pickers for the source types that need them. Reorder, toggle visibility, remove.
Audio mixer One row per audio-capable source: live VU meter (green / yellow / red), volume slider on an IEC dB curve, mute toggle. Levels come from a VolumeMeter queue read on the tk main loop.
Recording Standard MKV recording with live frames / bytes / dropped-frames in the status bar.

The whole app is ~600 lines in a single file. Use it as a starting point for your own pylibobs-based applications.


API overview

Class Wraps Notes
OBSContext obs_startup / obs_shutdown, video/audio reset Use as a context manager.
OBSData obs_data_t Dict-like; OBSData({"k": "v"})
Source obs_source_t Source.create(kind, name, settings)
Scene / SceneItem obs_scene_t / obs_sceneitem_t Add sources, set visibility, iterate items
VideoEncoder / AudioEncoder obs_encoder_t Per-type factory
Service obs_service_t RTMP/streaming targets
Output obs_output_t File or stream sinks; start()/stop()
Display obs_display_t Live preview into a native window (HWND)

Testing

pip install -e ".[dev]"

# Unit tests (mocked cffi layer — fast, no libobs needed)
pytest tests/unit

# Integration tests (need a real libobs)
pytest tests/integration -m integration

# On Linux CI with no display:
Xvfb :99 -screen 0 1920x1080x24 &
DISPLAY=:99 pytest tests/integration -m integration

CI runs the full matrix on Windows, Linux, and macOS — see .github/workflows/ci.yml.


Project layout

pylibobs/
├── pylibobs/
│   ├── _lib.py            # Library locator
│   ├── _ffi.py            # cffi instance
│   ├── _declarations.py   # C API declarations for cdef()
│   ├── context.py         # OBSContext
│   ├── data.py            # OBSData
│   ├── source.py          # Source
│   ├── scene.py           # Scene / SceneItem
│   ├── encoder.py         # VideoEncoder / AudioEncoder
│   ├── service.py         # Service
│   ├── output.py          # Output
│   └── _libs/             # Bundled libobs binaries (after fetch_libs.py)
├── tests/unit/            # Mocked tests
├── tests/integration/     # Real libobs tests
├── scripts/fetch_libs.py  # Pull libobs from OBS releases
└── examples/              # record_to_file.py, stream_to_rtmp.py

Coverage / known gaps

pylibobs currently declares 100% of the public libobs API (all 1388 exported obs_* / gs_* / signal_* / audio_resampler_* / media_remux_* functions are callable via pylibobs._ffi.get_lib()). Pythonic class-based wrappers cover the common workflows:

  • Lifecycle, video/audio init, scenes, sources, scene items, transforms (pos/scale/rot/crop/bounds)
  • Outputs (file + RTMP streaming), encoders (incl. ROI hints), services
  • Live preview (Display attached to a native window via HWND)
  • Filters, transitions, hotkeys, fader + VU meter, audio monitoring
  • Raw audio/video callbacks (numpy-friendly), audio resampler, media remux
  • Properties API (read + edit, with type-aware widgets in examples/pylibobs_studio.py)
  • Save / load whole scene collections to JSON

What's intentionally raw-only (callable via get_lib() but no class wrapper):

  • The 290 gs_* graphics primitives — exposing them invites GPU-thread bugs; use obs_render_main_texture() instead.
  • Property builders (obs_properties_add_*) — only useful for C plugin authors.
  • Multi-canvas API (obs_canvas_*), obs_view_*, codec bitstream parsers (obs_avc_* / obs_av1_*).

Contributing

git clone https://github.com/jonata/pylibobs.git
cd pylibobs
python -m venv .venv && source .venv/bin/activate    # Windows: .venv\Scripts\activate
pip install -e ".[dev]"
python scripts/fetch_libs.py                          # download bundled libobs
pytest                                                # 100+ tests, mock + integration

The integration suite needs process isolation (libobs can't gracefully restart inside a single process); use the included runner:

python scripts/run_tests.py

Release process

  1. Bump version in pyproject.toml and tag the commit vX.Y.Z.
  2. Push the tag. GitHub Actions:
    • Builds platform-specific wheels with bundled libobs (Windows / Linux / macOS Intel + Apple Silicon)
    • Builds the sdist
    • Publishes to PyPI via Trusted Publishing (no token needed in repo secrets)
    • Attaches all wheels to a GitHub Release with auto-generated notes

To set up Trusted Publishing on PyPI for this repo, register pylibobs as a project on PyPI, then in Project settings → Publishing, add a "GitHub Actions" trusted publisher pointing at <owner>/pylibobs / workflow release.yml / environment pypi.


Contributions welcome — PRs against main.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pylibobs-0.1.1.tar.gz (101.0 kB view details)

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

pylibobs-0.1.1-py3-none-win_amd64.whl (43.5 MB view details)

Uploaded Python 3Windows x86-64

pylibobs-0.1.1-py3-none-manylinux_2_31_x86_64.whl (17.0 MB view details)

Uploaded Python 3manylinux: glibc 2.31+ x86-64

pylibobs-0.1.1-py3-none-macosx_12_0_arm64.whl (40.6 MB view details)

Uploaded Python 3macOS 12.0+ ARM64

File details

Details for the file pylibobs-0.1.1.tar.gz.

File metadata

  • Download URL: pylibobs-0.1.1.tar.gz
  • Upload date:
  • Size: 101.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylibobs-0.1.1.tar.gz
Algorithm Hash digest
SHA256 5ae06c6a337bf30153a06a4556881b7472913fef6d74f1a62af286de860dfdc1
MD5 e2639eee73d165280371f32c5e349313
BLAKE2b-256 bd057acb87de829eb6e2e2b0d354790ae407448aec4c5cf760dec7dd8fe9b349

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibobs-0.1.1.tar.gz:

Publisher: release.yml on jonata/pylibobs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibobs-0.1.1-py3-none-win_amd64.whl.

File metadata

  • Download URL: pylibobs-0.1.1-py3-none-win_amd64.whl
  • Upload date:
  • Size: 43.5 MB
  • Tags: Python 3, Windows x86-64
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pylibobs-0.1.1-py3-none-win_amd64.whl
Algorithm Hash digest
SHA256 7e9a9c3170880fc06efebb4e5e8953e109e969e73f1339404342201790cb7a48
MD5 144b656770022d891009e60d86f9f60f
BLAKE2b-256 04756414529d3ee293d9e8509739f0a686a33e2003057123c3f6592ebf3759c6

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibobs-0.1.1-py3-none-win_amd64.whl:

Publisher: release.yml on jonata/pylibobs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibobs-0.1.1-py3-none-manylinux_2_31_x86_64.whl.

File metadata

File hashes

Hashes for pylibobs-0.1.1-py3-none-manylinux_2_31_x86_64.whl
Algorithm Hash digest
SHA256 f40ba8b2e47bb8bd67579878626222cfcfdb6a5edad7f5d91cf1cfb1be5bc419
MD5 346c987cfe1d03bc53faca68b5bece0b
BLAKE2b-256 fd2e9e99f5b91cb9660386a0d55b145ae1087b563b08658521530f5d4e887ad8

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibobs-0.1.1-py3-none-manylinux_2_31_x86_64.whl:

Publisher: release.yml on jonata/pylibobs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pylibobs-0.1.1-py3-none-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for pylibobs-0.1.1-py3-none-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 238c130628feacd5afbef289da94d25b2ac7f4427d113327e7f1e6fa887ce712
MD5 4b9ec4eed6717b56a83c22a7664b5bb6
BLAKE2b-256 1952e28dcd221fcbb460e9bb6babc28c1c3a1a587cf51634d76241f916db7914

See more details on using hashes here.

Provenance

The following attestation bundles were made for pylibobs-0.1.1-py3-none-macosx_12_0_arm64.whl:

Publisher: release.yml on jonata/pylibobs

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

0.1.2

4 files

This release

0.1.1 This release

4 files

0.1.0

4 files

0.0.1

4 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page