From 68bd1bd052a7cd6438b92cb1059ef5e58b8d022c Mon Sep 17 00:00:00 2001 From: Franoosh Date: Fri, 25 Jul 2025 17:13:38 +0200 Subject: Initial commit. Proof of concept message passing between client <-> router <-> worker with rudimentary caching --- templates/client.html | 47 +++++++++++++++++++++++++++++++++++++++++++++++ templates/client.html.bak | 41 +++++++++++++++++++++++++++++++++++++++++ templates/main.html | 16 ++++++++++++++++ templates/main.html.bak | 35 +++++++++++++++++++++++++++++++++++ 4 files changed, 139 insertions(+) create mode 100644 templates/client.html create mode 100644 templates/client.html.bak create mode 100644 templates/main.html create mode 100644 templates/main.html.bak (limited to 'templates') diff --git a/templates/client.html b/templates/client.html new file mode 100644 index 0000000..e03394a --- /dev/null +++ b/templates/client.html @@ -0,0 +1,47 @@ + + + + Client {{ client_id }} - Camera Streams + + + +

Camera Streams for client: {{ client_id }}

+
+ {% for camera_id in camera_ids %} +
+

Camera {{ camera_id }}

+ +
+ {% endfor %} +
+ + + diff --git a/templates/client.html.bak b/templates/client.html.bak new file mode 100644 index 0000000..9a4ff08 --- /dev/null +++ b/templates/client.html.bak @@ -0,0 +1,41 @@ + + + + Client {{ client_id }} - Camera Streams + + + +

Camera Streams for Client {{ client_id }}

+ {% for camera_id in camera_ids %} +
+

Camera {{ camera_id }}

+ +
+ {% endfor %} + + + diff --git a/templates/main.html b/templates/main.html new file mode 100644 index 0000000..e0eaa52 --- /dev/null +++ b/templates/main.html @@ -0,0 +1,16 @@ + + + + Live Streaming + + +

Streaming live.

+ {% for client_id in clients.keys() %} +

Client {{ client_id }}

+
  • + Client {{ client_id }} streams + +
  • + {% endfor %} + + diff --git a/templates/main.html.bak b/templates/main.html.bak new file mode 100644 index 0000000..7bb2ee5 --- /dev/null +++ b/templates/main.html.bak @@ -0,0 +1,35 @@ + + + + Live Streaming + + + +

    Streaming. Live.

    + + + -- cgit v1.2.3