83080cfe41
-pixel sizes for video and thumbnails are now configurable -the amount of recording and snapshot threads are now configurable -changed the default buffer and recording directories to drop the application name and also drop a level -service files are now stored in a dedicated dir -fixed logging so it will capture errors better -moved folder structure building to rdConfig() and added more error capturing -recording fps is now configurable
16 lines
304 B
Bash
16 lines
304 B
Bash
#!/bin/sh
|
|
export DEBIAN_FRONTEND=noninteractive
|
|
|
|
magick -version &> /dev/null
|
|
|
|
if [ ! $? -eq 0 ]
|
|
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
|