Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,3 @@ python -m pytest
The current package uses HTTP for session creation and a WebSocket for binary
PCM. Configure the control-plane and Relay URLs in your application; the SDK
does not start hidden infrastructure or select a hosted service for you.

## Related projects

- [PocketStation Core](https://github.com/pocketstation-io/pocketstation)
- [PocketStation Relay](https://github.com/pocketstation-io/relay)
- [PocketStation Control Plane](https://github.com/pocketstation-io/control-plane)
2 changes: 1 addition & 1 deletion pocketstation/station.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ async def broadcast(self, audio: bytes) -> None:

The payload is transmitted as binary WebSocket data — not base64 JSON.

:param audio: raw PCM bytes (f32-LE 48 kHz mono per PY-013).
:param audio: raw PCM bytes (f32-LE, 48 kHz, mono).
:raises RuntimeError: if not connected.
:raises websockets.exceptions.WebSocketException: on send failure.
"""
Expand Down
Loading