Embed Pennsylvania Traffic Cameras on a Display Board

1. Open Google Chrome
2. Visit 511pa.com
3. In the legend, deselect all items and select Cameras.
4. Select the desired Camera and then click Show Video.
5. In Chrome Web Browser click the top right 3 dots button.
6. Select More Tools > Web Developer Tools
7. Use the top left icon (Select an element in the page to inspect it)
8. Click on your video, which will display HTML code.
9. In the HTML code, look for a 511pa.com URL that looks similar to

<link href="//vjs.zencdn.net/8.3.0/video-js.min.css" rel="stylesheet">
<script src="//vjs.zencdn.net/8.3.0/video.min.js"></script>

<video
    height="400"
    width="600"
    id="my-player"
    class="video-js"
    controls
    preload="auto"
    data-setup='{}'
    muted>
	
<source src="https://pa-se5.arcadis-ivds.com:8300/hls/CHAN-3929/index.m3u8?token=fd93055a3546fd2373181a76ba4b9f6dbd8a5ede7a4346f56cb1b8de125472b9" type="application/x-mpegURL"> 

</video>

<script>
var player = videojs('my-player');
player.play();
</script>