|
| 1 | +# Baseline Setup |
| 2 | + |
| 3 | +### [FFmpeg](https://www.ffmpeg.org/download.html) ([Link](https://www.ffmpeg.org/download.html)) |
| 4 | +Moviepy and ffmpeg work well together. ffmpeg can do most/all of this on it's own but, as far as this writing, lacks Python bindings. Thus, moviepy is used! |
| 5 | + |
| 6 | +##### macOS: |
| 7 | + |
| 8 | +Use [homebrew](http://brew.sh) |
| 9 | + |
| 10 | +``` |
| 11 | +brew update && brew install ffmpeg |
| 12 | +``` |
| 13 | + |
| 14 | +#### Windows/Linux: |
| 15 | +Use the [executable](https://www.ffmpeg.org/download.html) |
| 16 | + |
| 17 | + |
| 18 | + |
| 19 | +### [ImageMagick](https://imagemagick.org/script/download.php) ([Link](https://imagemagick.org/script/download.php)) |
| 20 | +To add text, you must install ImageMagic. |
| 21 | + |
| 22 | +##### macOS: |
| 23 | + |
| 24 | +Use [homebrew](http://brew.sh) |
| 25 | + |
| 26 | +``` |
| 27 | +brew update && brew install imagemagick |
| 28 | +``` |
| 29 | +#### Linux: |
| 30 | +Download [here](https://imagemagick.org/script/download.php) |
| 31 | + |
| 32 | +#### Windows: |
| 33 | +Use the [binary or exe](https://imagemagick.org/script/download.php#windows) |
0 commit comments