Update 2024-12-23 11:45 OpenBSD/amd64-t14

This commit is contained in:
c0dev0id
2024-12-23 11:45:57 +01:00
parent 180588879c
commit b3b69a682a
2 changed files with 8 additions and 5 deletions

View File

@@ -12,7 +12,7 @@ do
hd) shift; _res="-video_size 1280x720" ;;
sd) shift; _res="-video_size 640x360" ;;
max) shift; _res=max ;;
[0-9]*x[0-9]*) shift; _res="$arg" ;;
[0-9]*x[0-9]*) shift; _res="-video_size $arg" ;;
*) _dev="$arg" ;;
esac
done
@@ -45,15 +45,18 @@ then
exit 0
fi
command="$(echo "ffplay -loglevel quiet -f v4l2 $_format $_res -i $_dev" | xargs)"
if [ ! -z "$_start" ]
then
ffplay -loglevel quiet -f v4l2 $_format $_res -i $_dev &
echo "starting: $command"
$command > /dev/null 2>&1 &
exit 0
fi
if [ ! -z "$_stop" ]
then
# close enough...
pkill -f "ffplay -loglevel quiet -f v4l2"
echo "stopping: $command"
pkill -qf "$command"
exit 0
fi