Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | /** * Vision Recording Module * * Server-side recording of abacus vision frames during practice sessions. * * Features: * - Frame accumulation and storage * - Ring buffer for live DVR (scrub-back during observation) * - Video encoding (MP4 with H.264) * - Problem marker synchronization for playback * - Automatic cleanup of expired recordings * * @module lib/vision/recording */ export { VisionRecorder, type VisionFrame, type VisionRecorderConfig, type ProblemMarkerInput, type PracticeStateInput, type ProblemMetadata, type ProblemMetadataEntry, type VideoReadyCallback, type VideoFailedCallback, } from './VisionRecorder' export { VideoEncoder, type VideoEncoderOptions, type EncodingResult, } from './VideoEncoder' |