Typed async client for the Janus NoSIP plugin
Project description
janus-nosip-plugin
Typed async bindings for janus.plugin.nosip, packaged separately from
janus-api-core and every other named plugin.
NoSIP bridges WebRTC media to plain RTP while the application owns external signalling. The API therefore makes the two SDP directions explicit:
from janus_api.models.base import Jsep
from janus_nosip_plugin import NoSipPlugin
bridge = NoSipPlugin(session=session)
await bridge.attach()
# WebRTC JSEP -> bare SDP for an external signalling protocol.
generated = await bridge.generate(Jsep(type="offer", sdp=webrtc_offer))
plain_sdp = generated.data.result.sdp
# Bare remote SDP -> JSEP returned in processed.jsep.
processed = await bridge.process("answer", remote_plain_sdp)
remote_jsep = processed.jsep
The package covers generate, process, hangup, recording, keyframe,
rtp_forward, stop_rtp_forward, and listforwarders. Ports, payload types,
stream collections, JSEP directions, and SRTP parameter pairs are validated
before I/O.
See the official NoSIP API. Outbound schemas are strict; inbound schemas retain unknown keys and event variants for compatibility with newer Janus versions.
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 Distribution
Built Distribution
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 janus_nosip_plugin-3.0.0.tar.gz.
File metadata
- Download URL: janus_nosip_plugin-3.0.0.tar.gz
- Upload date:
- Size: 9.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2d45adbecc3bba496940e8db23623818bc319dfce838dee9458f12fbffc64220
|
|
| MD5 |
ecf1b03380c44afafc37e04f1098204c
|
|
| BLAKE2b-256 |
561d1fe7fe93fd49d9d80bc38f5c0956f7a09b8aed94721d36826755afc6b1fd
|
File details
Details for the file janus_nosip_plugin-3.0.0-py3-none-any.whl.
File metadata
- Download URL: janus_nosip_plugin-3.0.0-py3-none-any.whl
- Upload date:
- Size: 7.9 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f698c6f854b494b631e5fa36f2276afc09e81f73c1dedde8e5e6f20cd69f8597
|
|
| MD5 |
9024de213afa6afa495b2b73f71cf2ab
|
|
| BLAKE2b-256 |
7d19a47231d31466d37dfcd774e7199d6f15d882bbaa5ca102e9065180134c4a
|