began implementation of async call from web app

This commit is contained in:
2023-01-17 16:52:20 +00:00
parent 7af627c2b4
commit b5dc9e3e73
6 changed files with 69 additions and 53 deletions

17
templates/index.html Normal file
View File

@@ -0,0 +1,17 @@
<!DOCTYPE html>
<html>
<head>
<title>🔴 Streaming...</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel= "stylesheet" type= "text/css" href= "{{ url_for('static',filename='style.css') }}">
</head>
<body>
<div id="title">Camera Feed</div>
<div id="camera">
<img id="camera_feed" src="/stream_feed">
</div>
</body>
</html>