adept/README.md
Gregory Ballantine 579450a537
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
Updated runtime dependencies in the readme
2022-09-02 17:58:08 -04:00

25 lines
622 B
Markdown

# adept
Bit Goblin video transcoder service
## Installation
**Note: currently Adept will only run on Linux as `lsof` is a runtime dependency, which doesn't have a Windows equivalent. This will be rectified in the future.**
Build dependencies:
* go
* make
Runtime dependencies:
* ffmpeg
* lsof
To install dependencies on Ubuntu: `apt install golang make ffmpeg lsof`
To install dependencies on Red Hat/AlmaLinux: `dnf install go make ffmpeg lsof`
To install Adept as a system service: `make build && sudo make install`
## Uninstallation
To uninstall Adept (if it was installed through make): `sudo make uninstall`