diff options
author | pommicket <leonardomtenenbaum@gmail.com> | 2016-02-28 13:22:33 -0500 |
---|---|---|
committer | pommicket <leonardomtenenbaum@gmail.com> | 2016-02-28 13:22:33 -0500 |
commit | f3fef73c38d52a31ec8a99c1233a3a00a38dcbf6 (patch) | |
tree | 28ffab8eaecd02c744286ae1441683e71eeb18fe | |
parent | cdde99ac0fdbcad1133e9482c8a6d283c7842a5b (diff) |
Update README.md
-rw-r--r-- | README.md | 31 |
1 files changed, 31 insertions, 0 deletions
@@ -1,2 +1,33 @@ # AutoArt A computer program that generates art + +AutoArt uses [stb_image](https://github.com/nothings/stb) to create images. + +For an online version of AutoArt go to http://autoart.neocities.org + +For a faster version of AutoArt that runs on your GPU, try [AutoArtGPU](http://github.com/pommicket/AutoArtGPU). Note that this has many more dependencies than AutoArt, so it will be harder to install. + +**AutoVideos (not AutoImages) requires avconv** + +**Mac OSX is not supported. If you want to run AutoArt on a Mac, either compile the source code yourself, go to the [online version](http://autoart.neocities.org), or try [AutoArtGPU](http://github.com/pommicket/AutoArtGPU).** + +**Running on Windows:** +AutoImages: +An exe can be found in AutoImages/bin/Windows + +AutoVideos: +An exe can be found in AutoVideos/bin/Windows +**Avconv installation for Windows:** +You can find avconv [here](http://builds.libav.org/windows/release-gpl/). Just extract it to a folder and add that folder to your path (Advanced system settings -> Environment variables). + +**Running on GNU/Linux** +AutoImages: +An executable can be found in AutoImages/bin/GNULinux + +AutoVideos: +An executable can be found in AutoVideos/bin/GNULinux +**Avconv installation for GNU/Linux:** +On Debian/Ubuntu just run the following command: +``` +sudo apt-get install libav-tools +``` |