Highlight cli command examples

This commit is contained in:
litter 2020-02-11 19:23:49 -05:00
parent 78bbc93d19
commit 7b059f4cef
1 changed files with 4 additions and 4 deletions

View File

@ -183,13 +183,13 @@ The purpose of the calibration sketch `filmless_calibration` is to generate a pa
On a Mac, ffmpeg can be quickly and easily installed using the [Homebrew](https://brew.sh) package manager. Simply go to [https://brew.sh](https://brew.sh) and follow the instructions on the page. Then, On a Mac, ffmpeg can be quickly and easily installed using the [Homebrew](https://brew.sh) package manager. Simply go to [https://brew.sh](https://brew.sh) and follow the instructions on the page. Then,
``` ```bash
brew install ffmpeg brew install ffmpeg
``` ```
To install ImageMagick (which will include the program `convert`): To install ImageMagick (which will include the program `convert`):
``` ```bash
brew install imagemagick brew install imagemagick
``` ```
@ -197,13 +197,13 @@ brew install imagemagick
Install both ffmpeg and ImageMagick on Linux systems with either apt or yum. Install both ffmpeg and ImageMagick on Linux systems with either apt or yum.
``` ```bash
apt install ffmpeg imagemagick apt install ffmpeg imagemagick
``` ```
or or
``` ```bash
yum install ffmpeg imagemagick yum install ffmpeg imagemagick
``` ```