summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Tenenbaum <leonardomtenenbaum@gmail.com>2019-06-16 13:09:34 -0400
committerGitHub <noreply@github.com>2019-06-16 13:09:34 -0400
commit3ea07f884d2723e24639414b46a717e5c54e0a6e (patch)
tree21e9c2cdede891e0afd112f457a159a83ece61d3
parent62d8bb440e8b34e1fc4b9afb9865d76e50e8cf89 (diff)
Added ffmpeg installation instructions0.2
-rw-r--r--README.md11
1 files changed, 10 insertions, 1 deletions
diff --git a/README.md b/README.md
index 7016507..46dd551 100644
--- a/README.md
+++ b/README.md
@@ -8,7 +8,16 @@ Art generated using random functions.
To run AutoArt, just download one of the [releases](https://github.com/pommicket/autoart/releases). Note that on Windows, when the images/videos/audios are done generating, the command prompt window will just close. Your images/videos/audios will be in whatever directory the executable was in (unless you haven't installed ffmpeg).
-**You will need [ffmpeg](http://ffmpeg.org/) for AutoVideos**, but not for AutoImages/Audio (and make sure it is in your PATH). You can install it on Debian/Ubuntu with:
+**You will need [ffmpeg](http://ffmpeg.org/) for AutoVideos**, but not for AutoImages/Audio.
+
+On Windows, you can install ffmpeg by [downloading a build](https://ffmpeg.zeranoe.com/builds/). Just extract the zip, and copy the file `ffmpeg.exe` in the `bin` directory to the directory where `autoart.exe` is located.
+
+You can install ffmpeg on OS X via [homebrew](https://brew.sh) with
+```bash
+brew install ffmpeg
+```
+
+And you can install it on Debian/Ubuntu with:
```bash
sudo apt install ffmpeg
```