foamCreateVideo: corrected test for avconv installation
This commit is contained in:
parent
bae45027f1
commit
90bd37616b
1 changed files with 1 additions and 1 deletions
|
|
@ -128,7 +128,7 @@ if [ "$fmt" = "webm" ] ; then
|
|||
error "Please install avconv"
|
||||
fi
|
||||
else
|
||||
if ! command -v avconv >/dev/null 2>&1 ; then
|
||||
if command -v avconv >/dev/null 2>&1 ; then
|
||||
echo "Creating image with avconv..."
|
||||
avconv \
|
||||
-framerate "$fps" \
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue