I'm working on a beaglebone (read: Angstrom Linux) and have a bunch of data that I'm capturing in a python script.
I'd like to stream that data in a graphical format to an internal IP address. I've streamed data before using matplotlib, but on the same machine. I've also set up a webserver on the beaglebone, but I have only been able to read index.html
The most straightforward way, with my limited knowledge, would be to have index.html render an image of the graph, then just refresh the page and rewrite the image very quickly... but that sucks and I know it.
Would I be best off packing the images into a video and streaming that? Could html5 pick up on that video? Is there a better way?
Ideally my streaming would be fairly close to real-time. Any thoughts are appreciated.