Zum Inhalt Zum Hauptmenü

Hot - View Index Shtml Camera

Advanced users (Home Assistant, openHAB) often scrape data from index.shtml pages to feed motion detection triggers into their smart home hubs. They need to "view" the page to extract the exact URL of the MJPEG stream.

Make the view interactive with JavaScript hotkeys: view index shtml camera hot

<script>
    document.addEventListener('keydown', (e) => 
        switch(e.key) 
            case 'ArrowUp':   fetch('/api/cam/ptz?move=up'); break;
            case 'ArrowDown': fetch('/api/cam/ptz?move=down'); break;
            case 'r':         location.reload(); break;
            case 'f':         document.fullscreen(); break;
);
</script>

If you manage a camera system using .shtml files: Advanced users (Home Assistant, openHAB) often scrape data

The term "hot" is ambiguous: