1
Ask HN: Any good libraries for doing video streaming/compression?
I want to stream a video from a jetson to aws, and curious if any one has advice?
Features I would love: -Commenting -Formatting of some kind to include code/media
Pipe dream: A way to get UDP data send to a JS client so that I can graph different metrics on a website hosted locally.
Brainstorm so far: Python server listening on multiple ports For loop to switch between sockets and collect data (open to threading here if ppl think it’s faster)
Transmission to website:
Server Side Events: (tested, works) Issue: I want bidirectional communication
WebRTC: Issue: Struggle with complexity of python implementation (aiortc) Pro: DataChannel is super fast <2ms
Websocket: TBD, haven’t tried it yet
Edit: (formatting)