I'm working on an html doc that I can use on my Apachee2 server to view 6 webcams on 1 page to monitor our 3D printers at school. I can make a simple page that shows the images and refresh the page to refresh the images, as I'm using images instead of the MJPEG stream to prevent excessive network bandwidth usage. I want these images to refresh every second without reloading the page. I just need a simple solution that will refresh all 6 feeds at the same time without reloading the page. Thanks!
I looked through about 20 different articles for this problem and none of them have been able to work, since I am a beginner.
<body>
<img src="http://example:8080/?action=snapshot" width="320" height="240">
<img src="https://example:8081/?action=snapshot“ width="320" height="240">
<img src="https://example:8082/?action=snapshot" width="320" height="240">
<img src="https://example:8083/?action=snapshot" width="320" height="240">
<img src="https://example:8084/?action=snapshot" width="320" height="240">
<meta http-equiv="refresh" content="2">
</body>