41ccf1d1e7
-removed the web interface. this project will instead continue to focus on backend operations. external applications can interface with the buf/rec directories to provide frontend operations. -removed the magick binary file from the project. magick will instead be built from source on the target machine for maximum support for the target architecture. -stream codec and format are now user configurable. -recording thumbnail and video formats are now user configurable.
14 lines
292 B
Bash
14 lines
292 B
Bash
#!/bin/sh
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
if ! command -v magick &> /dev/null
|
|
then
|
|
apt install -y git
|
|
git clone https://github.com/ImageMagick/ImageMagick.git .build-imagemagick
|
|
cd .build-imagemagick
|
|
./configure
|
|
make
|
|
make install
|
|
ldconfig /usr/local/lib
|
|
fi
|