We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d0f9e2e commit 7b3a6eaCopy full SHA for 7b3a6ea
1 file changed
vao-recorder.py
@@ -360,6 +360,7 @@ def start(self):
360
for stream in self.streams:
361
stream.start()
362
# Write start timestamp
363
+ # ! Can this cause delay in starting the video recording?
364
with open(self.output_folder / 'audio_start.txt', 'w') as f:
365
f.write(str(datetime.now().timestamp()))
366
@@ -437,7 +438,9 @@ def record(
437
438
config = get_config(config_path)
439
output_folder.mkdir(exist_ok=True, parents=True)
440
# Setup recording
- recorders = [r(config, output_folder) for r in Recorder.__subclasses__()]
441
+ recorders = [
442
+ r(config, output_folder) for r in (RealSenseRecorder, AudioRecorder)
443
+ ]
444
# Start the recording
445
for r in recorders:
446
r.start()
0 commit comments