Skip to content

Commit

Permalink
chore: use pkgconf rather than pkg-config (#23)
Browse files Browse the repository at this point in the history
Signed-off-by: Rui Chen <[email protected]>
  • Loading branch information
chenrui333 authored Jan 18, 2025
1 parent abbc5d3 commit ae891cd
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:

- name: Setup FFmpeg (macOS)
if: runner.os == 'macOS'
run: brew install ffmpeg pkg-config coreutils
run: brew install ffmpeg pkgconf coreutils

- name: Setup FFmpeg (Linux)
if: runner.os == 'Linux'
Expand Down
6 changes: 3 additions & 3 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ sudo apt-get install libavutil-dev libavformat-dev libavcodec-dev libswscale-dev

on macos you would do
```bash
brew install ffmpeg pkg-config
brew install ffmpeg pkgconf
```

on windows:
Expand Down Expand Up @@ -97,7 +97,7 @@ run the program with the following options (the default zig install directory is
asciigen -i input.png -o output.png -c
```

with edge detection, color, and custom downscale:
with edge detection, color, and custom downscale:
```bash
asciigen -i input.jpeg -o output.png -s 4 -e -c
```
Expand All @@ -114,7 +114,7 @@ run the program with the following options (the default zig install directory is
```

### Video

with an input video (no urls allowed):
```bash
asciigen -i /path/to/input/video.mp4 -o ascii.mp4 --codec hevc_nvenc --keep_audio
Expand Down

0 comments on commit ae891cd

Please sign in to comment.