We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 563da15 commit 959eb18Copy full SHA for 959eb18
1 file changed
src/instamatic/camera/camera_client.py
@@ -120,6 +120,10 @@ def _eval_dct(self, dct):
120
self.s.send(dumper(dct))
121
122
acquiring_image = dct['attr_name'] == 'get_image'
123
+ acquiring_movie = dct['attr_name'] == 'get_movie'
124
+
125
+ if acquiring_movie:
126
+ raise NotImplementedError('Acquiring movies over a socket is not supported.')
127
128
if acquiring_image and not self.use_shared_memory:
129
response = self.s.recv(self._imagebufsize)
0 commit comments