Flask-OpenCV-Streamer icon indicating copy to clipboard operation
Flask-OpenCV-Streamer copied to clipboard

The web page

Open venkatkrishna07 opened this issue 4 years ago • 1 comments

Where can i find the index.html ,wanted to make so ui changes for my project

venkatkrishna07 avatar Apr 03 '20 15:04 venkatkrishna07

@venkatkrishna07, in the same directory as your code you will have to create a folder "templates". Inside the created folder create a file and name it "index.html". Paste the following code inside the html file:

<html>
  <head>
    <title>Video Streaming Demonstration</title>
  </head>
  <body>
    <h1>Video Streaming Demonstration</h1>
    <img src="{{ url_for('video_feed') }}">
  </body>
</html>

You are ready to go! :)

jorauf avatar Sep 08 '20 07:09 jorauf