Face Clip Manager

Helper class for managing video clips saved by FaceTracker.

What is FaceClipManager?

FaceClipManager manages video clips saved by FaceTracker's alert recording pipeline. It provides simple methods to list, download, and remove clips from object storage.

Typically used with the same clip_storage_config from your FaceTracker setup.

When to Use

Use FaceClipManager to manage clips saved by FaceTracker:

  • List alert clips saved during monitoring

  • Download clips for backup

  • Implement retention policies (remove old clips)

  • Clean up storage after review

Typical workflow:

  1. Configure FaceTracker with clip_storage_config and alert mode

  2. Run FaceTracker.start_face_tracking_pipeline() - saves clips when alerts trigger

  3. Use FaceClipManager to list/download/remove saved clips

For analyzing clips, use FaceTracker.find_faces_in_clip().


How It Works

Initialize FaceClipManager with an ObjectStorageConfig - typically the same config used by FaceTracker:

See Configuration Guide for storage setup and FaceTracker integration.

See Methods Reference for complete API with examples.

Last updated

Was this helpful?