MediaWebSocket¶
MediaWebSocket
¶
WebSocket client for live video from the kvmd-media daemon.
Usage:
async with kvm.media_ws() as media:
async for frame in media.frames():
decoder.feed(frame.data)
The daemon only has something to send while the streamer is running, and
kvmd runs the streamer while at least one connected session asks for
video. Opening this socket is not that ask — it is a separate daemon.
Hold a PiKVM.ws() open alongside, or the video
stops arriving with nothing to say why. That socket reads itself, so
holding it open is the whole of it.
Source code in src/aiopikvm/_media_ws.py
76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 | |
pure
property
¶
Whether this socket was opened with a format.
A pure socket sends raw frames and nothing else. The regular one announces itself, answers pings, and flags its keyframes.
media
property
¶
What the daemon said it can send, once it has said it.
A regular socket announces this during
__aenter__(), so it is set by
the time the block runs. A pure socket never says it — it is already
streaming the format it was asked for — so this stays None there;
MediaResource.get_state()
is where to read it in that case.
__init__(url, *, user, passwd, auth='headers', token='', verify_ssl=DEFAULT_VERIFY_SSL, cert=None, proxy=None, trust_env=True, video='h264', follow_redirects=False, open_timeout=DEFAULT_TIMEOUT, close_timeout=DEFAULT_TIMEOUT, max_size=None, max_queue=None, ping_interval=_WS_PING_INTERVAL, ping_timeout=_WS_PING_TIMEOUT)
¶
Prepare a connection.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
url
|
str
|
PiKVM base URL, |
required |
user
|
str
|
kvmd user name. |
required |
passwd
|
str | Callable[[], str]
|
Password, TOTP code appended if the device asks for one. A zero-argument callable is called when the handshake is made, so a rotating code is the one current then. |
required |
auth
|
AuthMode
|
Which credential the handshake carries; |
'headers'
|
token
|
str | Callable[[], str]
|
Session token for |
''
|
verify_ssl
|
VerifyTypes
|
What to trust; see
|
DEFAULT_VERIFY_SSL
|
cert
|
CertTypes | None
|
Client certificate to present. |
None
|
proxy
|
str | None
|
Proxy URL to reach the device through. |
None
|
trust_env
|
bool
|
Read the proxy configuration from the environment. |
True
|
video
|
str | None
|
The format to stream, which opens the socket in pure mode:
the daemon starts sending during the handshake and every
binary message is one raw frame. |
'h264'
|
follow_redirects
|
bool
|
Follow a redirected handshake instead of raising
|
False
|
open_timeout
|
float
|
Seconds to wait for the handshake, and for the daemon's opening announcement on a regular socket. |
DEFAULT_TIMEOUT
|
close_timeout
|
float
|
Seconds to wait for the closing handshake. |
DEFAULT_TIMEOUT
|
max_size
|
int | None
|
Largest message to accept, in bytes. |
None
|
max_queue
|
int | None
|
How many frames websockets buffers before it stops
reading the socket, |
None
|
ping_interval
|
float | None
|
Seconds between websockets' own keepalive pings,
|
_WS_PING_INTERVAL
|
ping_timeout
|
float | None
|
Seconds to wait for a keepalive pong before
declaring the link dead, |
_WS_PING_TIMEOUT
|
Raises:
| Type | Description |
|---|---|
ConfigurationError
|
If the URL scheme is not |
Source code in src/aiopikvm/_media_ws.py
93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 | |
__aenter__()
async
¶
Open the connection.
On a regular socket this also reads the daemon's opening
announcement, so that media is
filled in before the block starts.
Returns:
| Type | Description |
|---|---|
Self
|
This client, connected. |
Raises:
| Type | Description |
|---|---|
ConfigurationError
|
Under |
AuthError
|
kvmd refused the credentials during the upgrade — 401 when none reached it, 403 when the ones that did were rejected. |
RedirectError
|
The upgrade was redirected and follow_redirects is off. Following it would resend the credential to the target. |
APIError
|
The upgrade was rejected for another reason. Asking for
a format the daemon does not serve is this one — HTTP 400
with |
ResponseError
|
The daemon's announcement was not the object this release knows. |
WebSocketError
|
The connection could not be established: DNS, TLS, timeout, or a server that does not speak WebSocket. |
Source code in src/aiopikvm/_media_ws.py
__aexit__(exc_type, exc_val, exc_tb)
async
¶
Close the connection, whatever happened inside the block.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
exc_type
|
type[BaseException] | None
|
Type of the exception the block raised, if any. |
required |
exc_val
|
BaseException | None
|
The exception the block raised, if any. |
required |
exc_tb
|
TracebackType | None
|
Traceback of that exception, if any. |
required |
Source code in src/aiopikvm/_media_ws.py
frames()
async
¶
Iterate over the video frames as they arrive.
Nothing arrives on a regular socket until
start() has asked for a format, and
nothing arrives on either until the daemon has a keyframe to open
with: it holds everything back until then, since a decoder handed a
delta frame first has nothing to apply it to. That is normally the
next one the encoder produces on its own; on a stream configured with
a long group of pictures it can be a while, and
request_keyframe() is
the way to stop waiting.
The iteration ends when either side closes the connection cleanly. A connection that breaks instead — the device rebooting, the streamer being restarted under it, the network going away — raises, because a caller that only sees the loop finish cannot tell "there is no more video" from "the video stopped arriving".
Anything that is not a frame is consumed here: the daemon's announcement, its answer to a ping, and any operation this release does not know.
Yields:
| Type | Description |
|---|---|
AsyncIterator[MediaFrame]
|
Each frame the daemon sent. |
Raises:
| Type | Description |
|---|---|
ResponseError
|
The daemon sent an announcement this release cannot read. |
WebSocketError
|
The client is not connected, or the connection broke instead of closing cleanly. |
Source code in src/aiopikvm/_media_ws.py
start(*, media_type='video', media_format='h264')
async
¶
Ask a regular socket to start streaming.
The daemon ignores a format it does not have, in silence and without
closing the socket, so a
frames() loop that never yields is
what a typo here looks like. The formats the daemon does have are on
MediaResource.get_state(),
and on media once this socket is
open.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
media_type
|
str
|
Which pipeline to start. |
'video'
|
media_format
|
str
|
The format to send, e.g. |
'h264'
|
Raises:
| Type | Description |
|---|---|
ConfigurationError
|
This socket was opened with a format, so it has been streaming since the handshake and has no handler for this event. |
WebSocketError
|
The client is not connected, or the connection broke before the frame could be sent. |
Source code in src/aiopikvm/_media_ws.py
request_keyframe()
async
¶
Ask the daemon for a keyframe now.
Works on both kinds of socket. Use it when the stream has to be joined quickly — the daemon sends nothing until it has a keyframe, and on a stream whose group of pictures is long that can be several seconds away — or after a decoder has lost its reference and needs a fresh one.
There is no acknowledgement: the keyframe simply turns up as the next
frame with
MediaFrame.key set, or, on a pure socket,
as the next one whose NAL units start with a parameter set.
Raises:
| Type | Description |
|---|---|
WebSocketError
|
The client is not connected, or the connection broke before the frame could be sent. |
Source code in src/aiopikvm/_media_ws.py
ping()
async
¶
Send the daemon's application-level ping.
This is not a round trip: the answer arrives on the socket like
everything else and is consumed by
frames(), which has no way to hand
it back. Keeping the connection alive needs neither — websockets
sends a protocol ping on its own — so this is only useful for making
the daemon's own event loop prove it is running.
Raises:
| Type | Description |
|---|---|
ConfigurationError
|
This socket was opened with a format. The daemon checks for that before answering a ping, so a pure socket never would. |
WebSocketError
|
The client is not connected, or the connection broke before the frame could be sent. |