mirror of
https://github.com/OpenFOAM/OpenFOAM-6.git
synced 2025-12-08 06:57:46 +00:00
foamCreateVideo: corrected test for avconv installation
This commit is contained in:
@ -128,7 +128,7 @@ if [ "$fmt" = "webm" ] ; then
|
|||||||
error "Please install avconv"
|
error "Please install avconv"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
if ! command -v avconv >/dev/null 2>&1 ; then
|
if command -v avconv >/dev/null 2>&1 ; then
|
||||||
echo "Creating image with avconv..."
|
echo "Creating image with avconv..."
|
||||||
avconv \
|
avconv \
|
||||||
-framerate "$fps" \
|
-framerate "$fps" \
|
||||||
|
|||||||
Reference in New Issue
Block a user