@@ -40,63 +40,63 @@ def remove_preset(self, preset=1, name='pos1'):
4040 """
4141 return self ._send_set_preset ('PtzPreset' , enable = 0 , preset = preset , name = name )
4242
43- def move_right (self , speed = 32 ):
43+ def move_right (self , speed = 25 ):
4444 """
4545 Move the camera to the right
4646 The camera moves self.stop_ptz() is called.
4747 :return: response json
4848 """
4949 return self ._send_operation ('Right' , speed = speed )
5050
51- def move_right_up (self , speed = 32 ):
51+ def move_right_up (self , speed = 25 ):
5252 """
5353 Move the camera to the right and up
5454 The camera moves self.stop_ptz() is called.
5555 :return: response json
5656 """
5757 return self ._send_operation ('RightUp' , speed = speed )
5858
59- def move_right_down (self , speed = 32 ):
59+ def move_right_down (self , speed = 25 ):
6060 """
6161 Move the camera to the right and down
6262 The camera moves self.stop_ptz() is called.
6363 :return: response json
6464 """
6565 return self ._send_operation ('RightDown' , speed = speed )
6666
67- def move_left (self , speed = 32 ):
67+ def move_left (self , speed = 25 ):
6868 """
6969 Move the camera to the left
7070 The camera moves self.stop_ptz() is called.
7171 :return: response json
7272 """
7373 return self ._send_operation ('Left' , speed = speed )
7474
75- def move_left_up (self , speed = 32 ):
75+ def move_left_up (self , speed = 25 ):
7676 """
7777 Move the camera to the left and up
7878 The camera moves self.stop_ptz() is called.
7979 :return: response json
8080 """
8181 return self ._send_operation ('LeftUp' , speed = speed )
8282
83- def move_left_down (self , speed = 32 ):
83+ def move_left_down (self , speed = 25 ):
8484 """
8585 Move the camera to the left and down
8686 The camera moves self.stop_ptz() is called.
8787 :return: response json
8888 """
8989 return self ._send_operation ('LeftDown' , speed = speed )
9090
91- def move_up (self , speed = 32 ):
91+ def move_up (self , speed = 25 ):
9292 """
9393 Move the camera up.
9494 The camera moves self.stop_ptz() is called.
9595 :return: response json
9696 """
9797 return self ._send_operation ('Up' , speed = speed )
9898
99- def move_down (self , speed = 32 ):
99+ def move_down (self , speed = 25 ):
100100 """
101101 Move the camera down.
102102 The camera moves self.stop_ptz() is called.
@@ -111,7 +111,7 @@ def stop_ptz(self):
111111 """
112112 return self ._send_noparm_operation ('Stop' )
113113
114- def auto_movement (self , speed = 32 ):
114+ def auto_movement (self , speed = 25 ):
115115 """
116116 Move the camera in a clockwise rotation.
117117 The camera moves self.stop_ptz() is called.
0 commit comments