Commit Graph

76 Commits

Author SHA1 Message Date
c347c200b2 fix: load pipeline stats in syncFileStatus and handle missing pipeline data
Problem:
- syncFileStatus() doesn't load pipeline progress data
- Files stuck in 'processing' without percentage display
- pollPipelineProgress() not started when pipeline data missing

Solution:
1. Add loadPipelineStats() call in syncFileStatus() for processing files
2. Start pollPipelineProgress() even when pipeline data is missing
3. Ensure progress bar always has data to display

Impact:
- Progress bar now shows percentage during deep scan
- Files no longer stuck in 'processing' state indefinitely
- Better handling of edge cases when API data is missing

Related: Core team needs to verify get_pipeline_stats API accuracy
2026-07-25 01:36:28 +08:00
58e614cb5c fix: unify status text to 'Scanning...' in LibraryView
Problem:
- Status badge showed 'Scanning'
- Progress bar showed 'Processing...'
- Two different texts displayed simultaneously

Solution:
- Change progress bar text to 'Scanning...'
- Now both badge and progress bar use consistent terminology
2026-07-25 01:27:16 +08:00
a3b45e12c5 refactor: rename Face Cluster to Face Deduplication in LibraryView
- Update processor label from 'Face Cluster' to 'Face Deduplication'
- More accurate description of face_cluster processor functionality
2026-07-25 00:46:13 +08:00
9f667cf174 fix: correct CSS syntax error in VideoPlayer
Fixed PostCSS parse error:
- Line 1452: Missing class selector before CSS rule
- Added .ms-mark-btn-wrap class selector
- Properly formatted CSS rule blocks
2026-07-24 23:35:05 +08:00
cb7e1ba0ba fix: resolve TypeScript compilation errors
Fixes:
- VideoPlayer.vue: restore allTags, filteredMarks, marksByTag (removed by mistake)
- PeopleView.vue: fix frameTime scope in playFaceDetailVideo catch block
- Both errors caused white screen on build failure

Root cause:
1. visibleTags duplicate declaration (old + new logic)
2. frameTime undefined in catch block (scope issue)

Solution:
1. Keep allTags/filteredMarks/marksByTag (needed in template)
2. Keep visibleTags (new logic for processor toggles)
3. Move frameTime calculation to correct scope in catch block
2026-07-24 23:33:40 +08:00
48975ef247 feat: add smart responsive design for VideoPlayer
Responsive Design:
- Mobile (<768px): 98% width, 50vh video height
- Tablet (769-1024px): 900px max, 65vh video
- Desktop (1025-1440px): 1000px max, 70vh video
- Large (1441px+): 1200px max, 75vh video (advanced)
- Ultra-wide (21:9 aspect): 60vh video height

Features:
- min() for max-width to prevent overflow
- min() for max-height to respect viewport
- calc() for dynamic height calculation
- Aspect ratio media query for ultra-wide screens
- Flexible toggle wrap on mobile
2026-07-24 23:27:51 +08:00
16fb1fd1ed feat: add processor toggles and enlarge video in advanced mode
Advanced Mode Enhancements:
- Processor visibility toggles (ASRX/OCR/Face/Pose)
- Toggle switches to show/hide each processor type
- Larger video size in advanced mode (1200px vs 720px)
- Video max-height increased to 75vh

Features:
- showAsrxInPlayer/showOcrInPlayer/showFaceInPlayer/showPoseInPlayer refs
- visibleTags computed respects toggle state
- ms-proc-toggles UI with colored labels
- ms-modal-video-advanced CSS class
2026-07-24 23:27:00 +08:00
38b993938b feat: integrate ASRX/OCR/Face display into VideoPlayer callers
SearchView:
- Enable ASRX subtitle + OCR bbox
- show-asrx='true', show-ocr='true'

PeopleView/PersonDetailView:
- Enable Face bbox (existing allTraces)
- show-face='true'

LibraryView:
- Keep simple mode (no processor overlays)
2026-07-24 23:24:13 +08:00
6a34a862f4 feat: add Face bbox and Pose indicator to VideoPlayer
Features:
- Face bbox overlay with identity label
- Pose indicator (top-right corner)
- Extended loadProcessorMarks for all processors
- ASRX speaker:text format

Overlays:
- OCR: orange bbox + text label
- Face: blue bbox + identity name
- Pose: purple indicator badge

New props:
- showFace: boolean
- showPose: boolean

Data formats:
- Face: { frames: [{ frame, faces: [{ bbox, identity_name }] }] }
- Pose: { frames: [{ frame, pose }] }
- ASRX: { segments: [{ start_frame, end_frame, speaker, text }] }
2026-07-24 23:17:31 +08:00
b1a9c44778 feat: add ASRX subtitle and OCR bbox overlay to VideoPlayer
Features:
- ASRX subtitle bar (below video)
- OCR bbox overlay (on video frame)
- Multi-track timeline for asrx/ocr/face/pose
- Real-time mark matching (frame-based)

Implementation:
- Add showAsrx/showOcr props
- Add loadProcessorMarks() to fetch processor JSON
- Add currentAsrxMark/currentOcrMarks computed
- Add OCR bbox overlay with text label
- Add ASRX subtitle bar with frame range

Data format (expected):
- ASRX: { segments: [{ start_frame, end_frame, text }] }
- OCR: { frames: [{ frame, text, bbox }] }

Colors:
- face: #4285f4 (blue)
- asrx: #34a853 (green)
- ocr: #fbbc04 (orange)
- pose: #9c27b0 (purple)
2026-07-24 23:11:05 +08:00
ab1399b853 fix: show frame and time in video titles (frame primary, time auxiliary)
Format: F123-F456 (5.1s-18.9s)
- Frame range is primary (left)
- Time range is auxiliary (right in parentheses)
2026-07-24 22:57:41 +08:00
717e2deb6a fix: remove hardcoded frame range from LibraryView title
When playing full video, only show filename.
Don't show F0-F99999 which is misleading.
2026-07-24 22:56:04 +08:00
c2901338e1 feat: enforce 100% frame-based positioning (no time)
Core Principle: Frame is the ONLY standard

Changes:
- VideoPlayer: Remove startTime/endTime props
- VideoPlayer: Add mandatory startFrame/endFrame check
- VideoPlayer: UI shows F123 (51.2s) format
- All Views: Only set startFrame/endFrame
- All Views: Only pass :start-frame/:end-frame
- Remove all startTime/endTime from currentVideo refs

Time is only used for display (auxiliary).
Frame is the source of truth for all positioning.
2026-07-24 22:49:35 +08:00
76c6ec183d fix: handle missing frame params in simple playback path
Problem: LibraryView calls VideoPlayer without frame params, causing:
- startFrame=0, endFrame=undefined passed to API
- Backend returns error or malformed stream
- Video playback error: MEDIA_ELEMENT_ERROR: Format error

Solution: Only pass frame params when both startFrame and endFrame are defined.
If missing, play full video (no frame params to API).

Fixes regression from commit 1fd6312 (frame-based positioning)
2026-07-24 22:00:35 +08:00
55d0216083 feat: add real-time files watch for LibraryView
Implement comprehensive monitoring system:
- Watch for new registered files (5s interval)
- Detect file status changes (registered → processing → completed)
- Monitor file additions/removals

Functions added:
- startFilesWatch(): Poll get_files API every 5s
- stopFilesWatch(): Clean up interval

LibraryView integration:
- Enable on mount
- Disable on unmount

Enables cross-machine monitoring: one operates, another watches changes
2026-07-24 21:49:06 +08:00
1fd6312f7e fix: enforce frame-based positioning across all video playback
Core Principle: Frame is the only standard

Changes:
- VideoPlayer: Add startFrame/endFrame props
- VideoPlayer: Use frame parameters in simple playback path
- SearchView: Remove frame/time conversion (stop using fps = 24)
- PeopleView: Pass frames directly instead of time
- PersonDetailView: Pass frames directly instead of time

All video streams now use startFrame/endFrame API parameters.
Time conversion only happens in VideoPlayer internals for UI display.

Ref: frame-based positioning standards research
2026-07-24 21:17:11 +08:00
2af8ffaf93 feat: add face_cluster processor support to LibraryView
Core Changes (P0):
- Add 'face_cluster' to processors array (2 locations)
- Add data.clusters branch to getJsonCount()
- Add FACE_CLUSTER to QC Pipeline Stage 2 filter

Additional Changes (P1):
- Add Face Cluster UI to context menu
- Add procFaceCluster ref and selectedProcessors()

Backend: Always-Produce rule ensures face_cluster.json always exists
Ref: /Users/accusys/momentry_core/docs_v1.0/GUIDES/QC_FaceCluster_Support.md
2026-07-24 20:52:27 +08:00
5951aca086 feat: frame-based positioning and mark system foundation
Core Changes:
- Fix SearchView to use start_frame/end_frame directly (no time*fps conversion)
- Add hard_delete support to delete_trace API
- VideoPlayer: Main timeline + Mark system foundation
- Proxy: Add local routes for auth, media, identity-matches, cluster-results
- Add .gitignore to exclude build artifacts and dependencies

Design Documents:
- Multi-track Mark system design (.opencode/plans/)
- Video editing positioning standards research

Files Modified:
- src/views/SearchView.vue: Frame positioning, ensureMinDuration (240 frames)
- src/views/PeopleView.vue: batchDeleteGroups with hard_delete
- src/api/index.ts: delete_trace with hard_delete body
- src/components/VideoPlayer.vue: Timeline + Mark UI
- src-tauri/src/proxy.rs: New local routes
- AGENTS.md: Update documentation
2026-07-24 20:19:47 +08:00
299f58e883 docs: update cluster-agent implementation status 2026-07-20 21:49:25 +08:00
13924965f7 fix: extract results array from search_smart API response 2026-07-02 21:52:46 +08:00
22e24b13b7 feat: show text_content in search results for keyword search 2026-07-02 21:24:24 +08:00
bf7fbce458 fix: remove Identity processor option and deprecated trace_chunks
- Removed Identity checkbox from processor selection in context menu
- Removed trace_chunks from PostgreSQL section (deprecated)
- Added relationship_chunks to PostgreSQL section
2026-07-02 16:22:48 +08:00
98a3d79701 feat: add ASR status display in search results, fix unassigned traces param name 2026-06-27 11:41:03 +08:00
691b38fe96 fix: m4mini deployment issues - duplicate script setup, auth redirect, Tauri bypass 2026-06-26 20:33:35 +08:00
f915aaf794 feat: pending identity sorting, face detail modal, video player fps, processor counts 2026-06-24 02:02:33 +08:00
7855983dc1 feat: bind/unbind by id, video streaming proxy, unmute default, library refresh, hamburger click-outside
- Core API: bind/unbind accept id (integer PK) when face_id is null
- Tauri proxy: stream video responses instead of buffering for seek bar
- VideoPlayer: remove muted attribute, unmute by default
- LibraryView: call invalidateFiles() before ensureFiles() on register/unregister
- PeopleView: close sort panel on click-outside, not just hamburger toggle
- bind_face: prefer face_id, fallback to id when face_id is null
2026-06-18 22:24:03 +08:00
97af4da331 fix: use identityUuid (camelCase) for person data 2026-06-15 12:25:48 +08:00
c9964ce4fb fix: use snake_case invoke commands 2026-06-15 11:56:55 +08:00
edab5158f0 fix: check __TAURI_INTERNALS__ for Tauri availability 2026-06-15 10:34:39 +08:00
f597db23cc fix: check for Tauri availability before invoke 2026-06-15 09:20:23 +08:00
68d459dc83 debug: detailed console logging for getPeople 2026-06-15 09:11:37 +08:00
88f07895d2 debug: add alert to onMounted 2026-06-15 09:08:52 +08:00
8d5aa1416c debug: add empty state message 2026-06-15 09:02:12 +08:00
fb47acf67b fix: add status field to PersonInfo struct 2026-06-15 04:10:40 +08:00
0dfa80918f debug: add console logs to PeopleView onMounted 2026-06-15 03:27:34 +08:00
41ac3b20f4 debug: add more console logs to PersonDetailView 2026-06-15 02:34:46 +08:00
5c2dbe46e5 debug: show uuid and people count on error page 2026-06-15 02:26:20 +08:00
9064b5a95d debug: add console logs to PersonDetailView 2026-06-15 02:23:47 +08:00
87cf4ca5b2 fix: invoke command names camelCase 2026-06-15 02:20:42 +08:00
ae4ebafe0a fix: PersonDetailView - load faces with thumbnails, merge traces, match WP design 2026-06-15 02:15:28 +08:00
488b4d5e2e feat: Person detail as independent page with route 2026-06-15 01:46:50 +08:00
9a6abcbdcb feat: add 待定人臉 section with face candidates 2026-06-15 01:09:31 +08:00
d900cb9545 fix: remove 確認人物 from context menu, keep 略過功能 2026-06-15 00:46:56 +08:00
1c63cb80f8 feat: People detail modal match WordPress design 2026-06-15 00:34:43 +08:00
c511674e99 feat: Add 確認人物 to context menu 2026-06-15 00:26:55 +08:00
006e67bf1d fix: context menu force display 2026-06-15 00:24:53 +08:00
dbcba0e2a9 feat: VideoPlayer loading state 2026-06-15 00:24:24 +08:00
681a235e77 fix: People context menu show properly 2026-06-15 00:10:52 +08:00
11b3b4b395 fix: zoom using CSS + cleanup 2026-06-14 23:33:05 +08:00
2544ab36b5 fix: People default status to confirmed 2026-06-14 23:29:50 +08:00