Install
openclaw skills install video-content-analyzer-batchClawHub Security found sensitive or high-impact capabilities. Review the scan results before using.
Analyze video content, extract keyframes, search web for references, generate Feishu Wiki reports. Supports batch directory processing with category-based publishing.
openclaw skills install video-content-analyzer-batchAn integrated workflow for processing video content — extract keyframes, search for related information, store results in Supabase, and publish documentation to Feishu Wiki.
process_video — Single video analysisProcess a single video file: extract keyframes, search the web for related info, store in Supabase, publish analysis report to Feishu Wiki.
Parameters:
video_path (string, required): Path to the input video fileuser_id (string, required): UUID of the user running the analysisspace_id (string, required): Feishu Wiki space ID for publishingbatch_process — Batch directory processingProcess all videos in a directory, auto-classify by filename keywords, store results in Supabase batch_jobs table, and publish categorized analysis reports to Feishu Wiki.
Parameters:
directory (string, required): Path to directory containing video filesuser_id (string, required): UUID of the user running the analysisspace_id (string, required): Feishu Wiki space ID for publishingcategories (object, optional): Mapping of category names to keyword lists for auto-classification
{"demo": ["demo", "presentation"], "tutorial": ["tut", "howto"]}interval_seconds (integer, optional): Keyframe extraction interval in seconds (default: 10)Supported video formats: .mp4, .avi, .mov, .mkv, .webm, .flv, .wmv
Batch workflow:
categories mappingbatch_jobs table in Supabase| Variable | Required | Description |
|---|---|---|
SUPABASE_URL | Yes | Supabase project URL |
SUPABASE_SERVICE_ROLE_KEY | Yes | Supabase service role key |
GOOGLE_API_KEY | Yes | Google Custom Search API key |
GOOGLE_SEARCH_ENGINE_ID | Yes | Google Custom Search engine ID |
FEISHU_APP_ID | Yes | Feishu app ID |
FEISHU_APP_SECRET | Yes | Feishu app secret |
FRAMES_OUTPUT_DIR | No | Directory for extracted frames (default: ./extracted_frames) |
# Single video
python src/main.py single path/to/video.mp4 --user-id <uuid> --space-id <space-id>
# Batch processing
python src/main.py batch /path/to/videos/ --user-id <uuid> --space-id <space-id>
# Batch with categories
python src/main.py batch /path/to/videos/ \
--user-id <uuid> \
--space-id <space-id> \
--categories '{"demo":["demo","presentation"],"tutorial":["tut","howto"]}'