Skip to content

Commit 3d7f726

Browse files
Create setup.md
1 parent 63b0fdd commit 3d7f726

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed

tutorial-reference/Day 15/setup.md

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

Comments
 (0)