(self, frame_width, frame_height, color_format, frame_rate)
| 72 | return filename_valid |
| 73 | |
| 74 | def configureStream(self, frame_width, frame_height, color_format, frame_rate): |
| 75 | self.conn.send([self.STREAM_CONFIGURE, frame_width, frame_height, color_format, frame_rate]) |
| 76 | configuration_valid = self.conn.recv() |
| 77 | |
| 78 | return configuration_valid |
| 79 | |
| 80 | def enableStream(self, mode): |
| 81 | self.conn.send([self.STREAM_ENABLE, mode]) |