forked from ZoneMinder/zoneminder
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request ZoneMinder#721 from knnniggett/onvifptzcontrol
add onvif ptz control into update script
- Loading branch information
Showing
1 changed file
with
111 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,111 @@ | ||
-- | ||
-- This updates a 1.28.10 database to 1.28.99 | ||
-- | ||
|
||
-- | ||
-- Add Controls definition for ONVIF | ||
-- | ||
INSERT INTO Controls | ||
SELECT * FROM (SELECT NULL as Id, | ||
'ONVIF Camera' as Name, | ||
'Ffmpeg' as Type, | ||
'onvif' as Protocol, | ||
0 as CanWake, | ||
0 as CanSleep, | ||
1 as CanReset, | ||
1 as CanZoom, | ||
0 as CanAutoZoom, | ||
0 as CanZoomAbs, | ||
0 as CanZoomRel, | ||
1 as CanZoomCon, | ||
0 as MinZoomRange, | ||
0 as MaxZoomRange, | ||
0 as MinZoomStep, | ||
0 as MaxZoomStep, | ||
0 as HasZoomSpeed, | ||
0 as MinZoomSpeed, | ||
0 as MaxZoomSpeed, | ||
0 as CanFocus, | ||
0 as CanAutoFocus, | ||
0 as CanFocusAbs, | ||
0 as CanFocusRel, | ||
0 as CanFocusCon, | ||
0 as MinFocusRange, | ||
0 as MaxFocusRange, | ||
0 as MinFocusStep, | ||
0 as MaxFocusStep, | ||
0 as HasFocusSpeed, | ||
0 as MinFocusSpeed, | ||
0 as MaxFocusSpeed, | ||
1 as CanIris, | ||
0 as CanAutoIris, | ||
1 as CanIrisAbs, | ||
0 as CanIrisRel, | ||
0 as CanIrisCon, | ||
0 as MinIrisRange, | ||
255 as MaxIrisRange, | ||
16 as MinIrisStep, | ||
16 as MaxIrisStep, | ||
0 as HasIrisSpeed, | ||
0 as MinIrisSpeed, | ||
0 as MaxIrisSpeed, | ||
0 as CanGain, | ||
0 as CanAutoGain, | ||
0 as CanGainAbs, | ||
0 as CanGainRel, | ||
0 as CanGainCon, | ||
0 as MinGainRange, | ||
0 as MaxGainRange, | ||
0 as MinGainStep, | ||
0 as MaxGainStep, | ||
0 as HasGainSpeed, | ||
0 as MinGainSpeed, | ||
0 as MaxGainSpeed, | ||
1 as CanWhite, | ||
0 as CanAutoWhite, | ||
1 as CanWhiteAbs, | ||
0 as CanWhiteRel, | ||
0 as CanWhiteCon, | ||
0 as MinWhiteRange, | ||
6 as MaxWhiteRange, | ||
1 as MinWhiteStep, | ||
1 as MaxWhiteStep, | ||
0 as HasWhiteSpeed, | ||
0 as MinWhiteSpeed, | ||
0 as MaxWhiteSpeed, | ||
1 as HasPresets, | ||
10 as NumPresets, | ||
0 as HasHomePreset, | ||
1 as CanSetPresets, | ||
1 as CanMove, | ||
1 as CanMoveDiag, | ||
0 as CanMoveMap, | ||
0 as CanMoveAbs, | ||
0 as CanMoveRel, | ||
1 as CanMoveCon, | ||
1 as CanPan, | ||
0 as MinPanRange, | ||
0 as MaxPanRange, | ||
0 as MinPanStep, | ||
0 as MaxPanStep, | ||
0 as HasPanSpeed, | ||
0 as MinPanSpeed, | ||
0 as MaxPanSpeed, | ||
0 as HasTurboPan, | ||
0 as TurboPanSpeed, | ||
1 as CanTilt, | ||
0 as MinTiltRange, | ||
0 as MaxTiltRange, | ||
0 as MinTiltStep, | ||
0 as MaxTiltStep, | ||
0 as HasTiltSpeed, | ||
0 as MinTiltSpeed, | ||
0 as MaxTiltSpeed, | ||
0 as HasTurboTilt, | ||
0 as TurboTiltSpeed, | ||
0 as CanAutoScan, | ||
0 as NumScanPaths) AS tmp | ||
WHERE NOT EXISTS ( | ||
SELECT Name FROM Controls WHERE name = 'ONVIF Camera' | ||
) LIMIT 1; | ||
|