Skip to content

Commit 34ce1f8

Browse files
rootbalaboom123
authored andcommitted
Add video validation and flexible column detection to MediaPipe processing
- Add video file validation to prevent repeated processing of invalid videos - Support both START/END and START_REALIGNED/END_REALIGNED timestamp columns - Implement video validation caching to avoid duplicate checks - Add comprehensive task summary logging with skip reasons - Translate Chinese comments to English - Add proper resource cleanup and memory management - Fix 60-second duration filtering implementation This eliminates repeated error messages for missing/corrupted videos and improves processing efficiency.
1 parent 2fc1857 commit 34ce1f8

File tree

3 files changed

+260
-162
lines changed

3 files changed

+260
-162
lines changed

.gitignore

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,5 +158,11 @@ cython_debug/
158158
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
159159
# and can be added to the global gitignore or merged into this file. For a more nuclear
160160
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
161-
#.idea/
161+
.idea/
162+
163+
# Claude
164+
.claude/
165+
166+
# data
167+
dataset
162168

requirements.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,5 @@ tqdm
44
numpy
55
pandas
66
opencv-python
7-
mediapipe
7+
mediapipe
8+
psutil

0 commit comments

Comments
 (0)