You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
434 B
24 lines
434 B
15 years ago
|
#!/bin/sh
|
||
|
|
||
|
if [ "$help" != "1" ]
|
||
|
then
|
||
|
|
||
|
if [ "$motionest" = "false" ]
|
||
|
then
|
||
|
touch ../disable-motion_est
|
||
|
echo "- motion estimation components disabled. Add --enable-motion-est to enable."
|
||
|
else
|
||
|
cat << EOF >> ../producers.dat
|
||
|
slowmotion libmltmotion_est.so
|
||
|
EOF
|
||
|
|
||
|
cat << EOF >> ../filters.dat
|
||
|
motion_est libmltmotion_est.so
|
||
|
vismv libmltmotion_est.so
|
||
|
crop_detect libmltmotion_est.so
|
||
|
autotrack_rectangle libmltmotion_est.so
|
||
|
EOF
|
||
|
fi
|
||
|
|
||
|
fi
|