| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Note: The project is not yet very well documented as it's still under development. It is used by @greweb on https://twitch.tv/greweb and you can also find all the accumulated work made with it by @greweb at https://greweb.me/plots/tags/livedraw – the source code of each art piece is linked on that website too.
livedraw is a real-time collaborative pen plotter stream experience (e.g. twitch) created by @greweb.
loosely coupled:
Every part is loosely-coupled and you can fork / contribute to replace bricks by other bricks. For instance, I do my plotter art mostly with Rust, which is why the artistic part is in rust, but it's possible to make more "sdk"s. This is also a multi-language project: the stream server is in Node.js and the axidraw watch logic is in Python.
modular inputs:
The architecture is organized in modules. Notably centered around the "inputs" that the user can interact with.
configurable:
Every art will define a config.json that describes the behavior of inputs as well as how the UI should look like. We will make things more & more dynamic and put more and more efforts at accessing things in the configuration level.
in the art project, a files/ folder is created with 3 .SVG files: all.svg aggregated all the plotted work, increment.svg is the file being plotted right now and predictive.svg is the remaining work planned as if the current input was propagated in all future increments.
cd livedraw-server
yarn
node ./dist/index.jscd livedraw-axidraw-watch
python3 ./axidraw-watch.pyyou need to modify the ~/.livedraw/config.json5 file to point to the right art project.
start your art project at the end. It will start the art live experiment.
cd art-rust-template # example
cargo runLivedraw creates a folder ~/.livedraw which contains:
to be documented.
| Back | FazBrowse Home | New Git URL |