Add compact locomotion sample (walking+jogging+running) with viewer-safe metadata layout
Browse files- README.md +81 -0
- data.jsonl +0 -0
- metadata/export_quality_report.json +39 -0
- metadata/features.json +0 -0
- metadata/global_stats.json +1972 -0
- metadata/manifest.json +230 -0
README.md
CHANGED
|
@@ -1,3 +1,84 @@
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-4.0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3 |
---
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
---
|
| 2 |
license: cc-by-nc-4.0
|
| 3 |
+
language:
|
| 4 |
+
- en
|
| 5 |
+
tags:
|
| 6 |
+
- pose-estimation
|
| 7 |
+
- 2d-pose
|
| 8 |
+
- 3d-pose
|
| 9 |
+
- mediapipe
|
| 10 |
+
- motion-dataset
|
| 11 |
+
- locomotion
|
| 12 |
+
- walking
|
| 13 |
+
- jogging
|
| 14 |
+
- running
|
| 15 |
+
- sports-science
|
| 16 |
+
pretty_name: QualityVision Locomotion Pose Dataset (Sample)
|
| 17 |
+
size_categories:
|
| 18 |
+
- n<1K
|
| 19 |
+
configs:
|
| 20 |
+
- config_name: default
|
| 21 |
+
data_files:
|
| 22 |
+
- split: train
|
| 23 |
+
path: "data.jsonl"
|
| 24 |
---
|
| 25 |
+
|
| 26 |
+
# QualityVision Locomotion Pose Dataset (Walking + Jogging + Running) — Sample
|
| 27 |
+
|
| 28 |
+
This is a **compact, viewer-friendly sample** extracted from a much larger HQ locomotion export generated by the **QualityVision Motion Dataset Engine**.
|
| 29 |
+
|
| 30 |
+
**Looking for the full commercial export or custom delivery?** See **pricing & ready-made bundles** on **[qvision.space/dataset-pricing](https://qvision.space/dataset-pricing)**.
|
| 31 |
+
|
| 32 |
+
## What’s inside
|
| 33 |
+
|
| 34 |
+
- `data.jsonl`: **one JSON object per line** (one frame per row) with **33 MediaPipe/BlazePose landmarks** (`x,y,z,visibility`).
|
| 35 |
+
- `metadata/manifest.json`: job metadata (fps, stride, post-processing flags).
|
| 36 |
+
- `metadata/global_stats.json`: dataset-level rollups.
|
| 37 |
+
- `metadata/export_quality_report.json`: QA thresholds + acceptance rates.
|
| 38 |
+
- `metadata/features.json`: sequence-level metrics (per-video aggregates).
|
| 39 |
+
|
| 40 |
+
**Note:** Auxiliary JSON files are kept under `metadata/` so the Hub viewer builds previews only from `data.jsonl`.
|
| 41 |
+
|
| 42 |
+
## Sample vs full commercial exports
|
| 43 |
+
|
| 44 |
+
| | This Hub sample | Full exports (paid) |
|
| 45 |
+
|---|---|---|
|
| 46 |
+
| Scale | Small subset for evaluation | Large HQ exports (e.g. 25k+ frames, multi-video bundles) |
|
| 47 |
+
| Use | Validate schema, parsing, model prototyping | Production datasets + optional custom scopes |
|
| 48 |
+
| Delivery | Files on the Hub | Secure download link / delivery within 24–72h |
|
| 49 |
+
| License | CC BY-NC 4.0 | Commercial license provided in writing |
|
| 50 |
+
|
| 51 |
+
## Data format (high level)
|
| 52 |
+
|
| 53 |
+
Each row contains:
|
| 54 |
+
|
| 55 |
+
- `timestamp_ms`: timestamp of the frame in milliseconds
|
| 56 |
+
- `original_filename`: source clip name (raw videos are not shipped here)
|
| 57 |
+
- `keypoints`: dict of 33 landmarks (name → `{x,y,z,visibility}`)
|
| 58 |
+
|
| 59 |
+
Coordinates:
|
| 60 |
+
|
| 61 |
+
- `x,y` are normalized image coordinates in \([0..1]\)
|
| 62 |
+
- `z` is a relative depth coordinate from the pose model
|
| 63 |
+
|
| 64 |
+
## Quick usage
|
| 65 |
+
|
| 66 |
+
```python
|
| 67 |
+
from datasets import load_dataset
|
| 68 |
+
|
| 69 |
+
ds = load_dataset(
|
| 70 |
+
"Alaaharoun/QualityVision-Locomotion-Pose-Dataset-Walking-Jogging-Running",
|
| 71 |
+
data_files="data.jsonl",
|
| 72 |
+
split="train",
|
| 73 |
+
)
|
| 74 |
+
print(ds[0].keys())
|
| 75 |
+
```
|
| 76 |
+
|
| 77 |
+
## Free technical references
|
| 78 |
+
|
| 79 |
+
- GitHub samples repository: `https://github.com/Alaaharoun/QualityVision-Motion-Dataset-Samples`
|
| 80 |
+
|
| 81 |
+
## Contact
|
| 82 |
+
|
| 83 |
+
Commercial licensing and custom datasets: `info@qvision.space`
|
| 84 |
+
|
data.jsonl
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
metadata/export_quality_report.json
ADDED
|
@@ -0,0 +1,39 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"job_id": "bulk_190_videos_4e1065b2",
|
| 3 |
+
"hq_export": true,
|
| 4 |
+
"config_warnings": [],
|
| 5 |
+
"thresholds": {
|
| 6 |
+
"min_frame_quality_score": 0.38,
|
| 7 |
+
"min_avg_landmark_visibility": 0.55,
|
| 8 |
+
"min_lower_body_visibility": 0.4,
|
| 9 |
+
"min_motion_local": null
|
| 10 |
+
},
|
| 11 |
+
"filter_report": {
|
| 12 |
+
"enabled": true,
|
| 13 |
+
"thresholds": {
|
| 14 |
+
"min_frame_quality_score": 0.38,
|
| 15 |
+
"min_avg_landmark_visibility": 0.55,
|
| 16 |
+
"min_lower_body_visibility": 0.4,
|
| 17 |
+
"min_motion_local": null
|
| 18 |
+
},
|
| 19 |
+
"frames_total": 26755,
|
| 20 |
+
"frames_accepted_pre_augmentation": 14897,
|
| 21 |
+
"frames_exported_including_augmentations": 44691,
|
| 22 |
+
"frames_rejected": 11858,
|
| 23 |
+
"accepted_percentage": 55.68,
|
| 24 |
+
"acceptance_rate_note": "accepted_percentage = frames_accepted_pre_augmentation / frames_total (sampled). frames_exported_including_augmentations includes augmentation duplicates.",
|
| 25 |
+
"quality_score_formula": "Per frame: frame_quality_score = 0.5 * avg_landmark_visibility + 0.0 * lower_body_visibility + 0.5 * motion_local.",
|
| 26 |
+
"mean_metrics_accepted_frames": {
|
| 27 |
+
"mean_frame_quality_score": 0.8571,
|
| 28 |
+
"mean_avg_landmark_visibility": 0.8061,
|
| 29 |
+
"mean_lower_body_visibility": 0.7779,
|
| 30 |
+
"mean_motion_local": 0.908
|
| 31 |
+
},
|
| 32 |
+
"quality_score_mean_filtered": 0.8571,
|
| 33 |
+
"mean_avg_landmark_visibility_filtered": 0.8061
|
| 34 |
+
},
|
| 35 |
+
"documentation": {
|
| 36 |
+
"sequence_quality_score": "Sequence quality_score uses motion_consistency from hip displacement series.",
|
| 37 |
+
"per_frame_scores": "Per frame: frame_quality_score = 0.5 * avg_landmark_visibility + 0.0 * lower_body_visibility + 0.5 * motion_local."
|
| 38 |
+
}
|
| 39 |
+
}
|
metadata/features.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
metadata/global_stats.json
ADDED
|
@@ -0,0 +1,1972 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"schema_version": "1.3.1",
|
| 3 |
+
"job_id": "bulk_190_videos_4e1065b2",
|
| 4 |
+
"batch": true,
|
| 5 |
+
"high_density_mode": false,
|
| 6 |
+
"video_count": 190,
|
| 7 |
+
"totals": {
|
| 8 |
+
"exported_frames": 44691,
|
| 9 |
+
"quality_score_mean": 0.8571,
|
| 10 |
+
"mean_avg_landmark_visibility": 0.80609,
|
| 11 |
+
"fps_mean": 27.717514064882486,
|
| 12 |
+
"stride": 3,
|
| 13 |
+
"action_distribution": {
|
| 14 |
+
"Full Locomotion Bundle (Walking + Jogging + Running)": 44691
|
| 15 |
+
}
|
| 16 |
+
},
|
| 17 |
+
"videos": [
|
| 18 |
+
{
|
| 19 |
+
"original_filename": "jogging_pexels_3048928.mp4",
|
| 20 |
+
"exported_frames": 69,
|
| 21 |
+
"fps": 24.0,
|
| 22 |
+
"stride": 3,
|
| 23 |
+
"quality_score": 0.737,
|
| 24 |
+
"estimated_source_duration_sec": 9.0,
|
| 25 |
+
"avg_sequence_length": 69,
|
| 26 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 27 |
+
},
|
| 28 |
+
{
|
| 29 |
+
"original_filename": "jogging_pexels_3192168.mp4",
|
| 30 |
+
"exported_frames": 627,
|
| 31 |
+
"fps": 25.0,
|
| 32 |
+
"stride": 3,
|
| 33 |
+
"quality_score": 0.8844,
|
| 34 |
+
"estimated_source_duration_sec": 31.4,
|
| 35 |
+
"avg_sequence_length": 627,
|
| 36 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 37 |
+
},
|
| 38 |
+
{
|
| 39 |
+
"original_filename": "jogging_pexels_4065467.mp4",
|
| 40 |
+
"exported_frames": 276,
|
| 41 |
+
"fps": 29.97002997002997,
|
| 42 |
+
"stride": 3,
|
| 43 |
+
"quality_score": 0.8835,
|
| 44 |
+
"estimated_source_duration_sec": 9.71,
|
| 45 |
+
"avg_sequence_length": 276,
|
| 46 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 47 |
+
},
|
| 48 |
+
{
|
| 49 |
+
"original_filename": "jogging_pexels_4859223.mp4",
|
| 50 |
+
"exported_frames": 54,
|
| 51 |
+
"fps": 25.0,
|
| 52 |
+
"stride": 3,
|
| 53 |
+
"quality_score": 0.8367,
|
| 54 |
+
"estimated_source_duration_sec": 2.88,
|
| 55 |
+
"avg_sequence_length": 54,
|
| 56 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 57 |
+
},
|
| 58 |
+
{
|
| 59 |
+
"original_filename": "jogging_pexels_4859225.mp4",
|
| 60 |
+
"exported_frames": 42,
|
| 61 |
+
"fps": 25.0,
|
| 62 |
+
"stride": 3,
|
| 63 |
+
"quality_score": 0.7219,
|
| 64 |
+
"estimated_source_duration_sec": 2.88,
|
| 65 |
+
"avg_sequence_length": 42,
|
| 66 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 67 |
+
},
|
| 68 |
+
{
|
| 69 |
+
"original_filename": "jogging_pexels_4859229.mp4",
|
| 70 |
+
"exported_frames": 36,
|
| 71 |
+
"fps": 25.0,
|
| 72 |
+
"stride": 3,
|
| 73 |
+
"quality_score": 0.725,
|
| 74 |
+
"estimated_source_duration_sec": 2.48,
|
| 75 |
+
"avg_sequence_length": 36,
|
| 76 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"original_filename": "jogging_pexels_4859234.mp4",
|
| 80 |
+
"exported_frames": 24,
|
| 81 |
+
"fps": 25.0,
|
| 82 |
+
"stride": 3,
|
| 83 |
+
"quality_score": 0.5671,
|
| 84 |
+
"estimated_source_duration_sec": 4.72,
|
| 85 |
+
"avg_sequence_length": 24,
|
| 86 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 87 |
+
},
|
| 88 |
+
{
|
| 89 |
+
"original_filename": "jogging_pexels_4859454.mp4",
|
| 90 |
+
"exported_frames": 102,
|
| 91 |
+
"fps": 25.0,
|
| 92 |
+
"stride": 3,
|
| 93 |
+
"quality_score": 0.8809,
|
| 94 |
+
"estimated_source_duration_sec": 4.84,
|
| 95 |
+
"avg_sequence_length": 102,
|
| 96 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 97 |
+
},
|
| 98 |
+
{
|
| 99 |
+
"original_filename": "jogging_pexels_4927592.mp4",
|
| 100 |
+
"exported_frames": 81,
|
| 101 |
+
"fps": 23.976023976023978,
|
| 102 |
+
"stride": 3,
|
| 103 |
+
"quality_score": 0.8989,
|
| 104 |
+
"estimated_source_duration_sec": 6.84,
|
| 105 |
+
"avg_sequence_length": 81,
|
| 106 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 107 |
+
},
|
| 108 |
+
{
|
| 109 |
+
"original_filename": "jogging_pexels_4929150.mp4",
|
| 110 |
+
"exported_frames": 120,
|
| 111 |
+
"fps": 23.976023976023978,
|
| 112 |
+
"stride": 3,
|
| 113 |
+
"quality_score": 0.9131,
|
| 114 |
+
"estimated_source_duration_sec": 7.72,
|
| 115 |
+
"avg_sequence_length": 120,
|
| 116 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 117 |
+
},
|
| 118 |
+
{
|
| 119 |
+
"original_filename": "jogging_pexels_4994624.mp4",
|
| 120 |
+
"exported_frames": 111,
|
| 121 |
+
"fps": 29.97002997002997,
|
| 122 |
+
"stride": 3,
|
| 123 |
+
"quality_score": 0.7681,
|
| 124 |
+
"estimated_source_duration_sec": 6.34,
|
| 125 |
+
"avg_sequence_length": 111,
|
| 126 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 127 |
+
},
|
| 128 |
+
{
|
| 129 |
+
"original_filename": "jogging_pexels_5029483.mp4",
|
| 130 |
+
"exported_frames": 282,
|
| 131 |
+
"fps": 29.97002997002997,
|
| 132 |
+
"stride": 3,
|
| 133 |
+
"quality_score": 0.8632,
|
| 134 |
+
"estimated_source_duration_sec": 14.35,
|
| 135 |
+
"avg_sequence_length": 282,
|
| 136 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"original_filename": "jogging_pexels_5033913.mp4",
|
| 140 |
+
"exported_frames": 114,
|
| 141 |
+
"fps": 29.97002997002997,
|
| 142 |
+
"stride": 3,
|
| 143 |
+
"quality_score": 0.8213,
|
| 144 |
+
"estimated_source_duration_sec": 9.51,
|
| 145 |
+
"avg_sequence_length": 114,
|
| 146 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 147 |
+
},
|
| 148 |
+
{
|
| 149 |
+
"original_filename": "jogging_pexels_5034319.mp4",
|
| 150 |
+
"exported_frames": 303,
|
| 151 |
+
"fps": 29.97002997002997,
|
| 152 |
+
"stride": 3,
|
| 153 |
+
"quality_score": 0.9217,
|
| 154 |
+
"estimated_source_duration_sec": 11.44,
|
| 155 |
+
"avg_sequence_length": 303,
|
| 156 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 157 |
+
},
|
| 158 |
+
{
|
| 159 |
+
"original_filename": "jogging_pexels_5034325.mp4",
|
| 160 |
+
"exported_frames": 183,
|
| 161 |
+
"fps": 29.97002997002997,
|
| 162 |
+
"stride": 3,
|
| 163 |
+
"quality_score": 0.918,
|
| 164 |
+
"estimated_source_duration_sec": 9.31,
|
| 165 |
+
"avg_sequence_length": 183,
|
| 166 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 167 |
+
},
|
| 168 |
+
{
|
| 169 |
+
"original_filename": "jogging_pexels_5034564.mp4",
|
| 170 |
+
"exported_frames": 249,
|
| 171 |
+
"fps": 29.97002997002997,
|
| 172 |
+
"stride": 3,
|
| 173 |
+
"quality_score": 0.9231,
|
| 174 |
+
"estimated_source_duration_sec": 10.21,
|
| 175 |
+
"avg_sequence_length": 249,
|
| 176 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 177 |
+
},
|
| 178 |
+
{
|
| 179 |
+
"original_filename": "jogging_pexels_5034569.mp4",
|
| 180 |
+
"exported_frames": 285,
|
| 181 |
+
"fps": 29.97002997002997,
|
| 182 |
+
"stride": 3,
|
| 183 |
+
"quality_score": 0.8359,
|
| 184 |
+
"estimated_source_duration_sec": 9.84,
|
| 185 |
+
"avg_sequence_length": 285,
|
| 186 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 187 |
+
},
|
| 188 |
+
{
|
| 189 |
+
"original_filename": "jogging_pexels_5034574.mp4",
|
| 190 |
+
"exported_frames": 429,
|
| 191 |
+
"fps": 29.97002997002997,
|
| 192 |
+
"stride": 3,
|
| 193 |
+
"quality_score": 0.8679,
|
| 194 |
+
"estimated_source_duration_sec": 16.52,
|
| 195 |
+
"avg_sequence_length": 429,
|
| 196 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 197 |
+
},
|
| 198 |
+
{
|
| 199 |
+
"original_filename": "jogging_pexels_5319341.mp4",
|
| 200 |
+
"exported_frames": 81,
|
| 201 |
+
"fps": 25.0,
|
| 202 |
+
"stride": 3,
|
| 203 |
+
"quality_score": 0.7461,
|
| 204 |
+
"estimated_source_duration_sec": 12.08,
|
| 205 |
+
"avg_sequence_length": 81,
|
| 206 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 207 |
+
},
|
| 208 |
+
{
|
| 209 |
+
"original_filename": "jogging_pexels_5319345.mp4",
|
| 210 |
+
"exported_frames": 21,
|
| 211 |
+
"fps": 25.0,
|
| 212 |
+
"stride": 3,
|
| 213 |
+
"quality_score": 0.702,
|
| 214 |
+
"estimated_source_duration_sec": 9.76,
|
| 215 |
+
"avg_sequence_length": 21,
|
| 216 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 217 |
+
},
|
| 218 |
+
{
|
| 219 |
+
"original_filename": "jogging_pexels_5319347.mp4",
|
| 220 |
+
"exported_frames": 225,
|
| 221 |
+
"fps": 25.0,
|
| 222 |
+
"stride": 3,
|
| 223 |
+
"quality_score": 0.7957,
|
| 224 |
+
"estimated_source_duration_sec": 13.44,
|
| 225 |
+
"avg_sequence_length": 225,
|
| 226 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 227 |
+
},
|
| 228 |
+
{
|
| 229 |
+
"original_filename": "jogging_pexels_5319351.mp4",
|
| 230 |
+
"exported_frames": 267,
|
| 231 |
+
"fps": 25.0,
|
| 232 |
+
"stride": 3,
|
| 233 |
+
"quality_score": 0.8828,
|
| 234 |
+
"estimated_source_duration_sec": 20.56,
|
| 235 |
+
"avg_sequence_length": 267,
|
| 236 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 237 |
+
},
|
| 238 |
+
{
|
| 239 |
+
"original_filename": "jogging_pexels_5319352.mp4",
|
| 240 |
+
"exported_frames": 144,
|
| 241 |
+
"fps": 25.0,
|
| 242 |
+
"stride": 3,
|
| 243 |
+
"quality_score": 0.8212,
|
| 244 |
+
"estimated_source_duration_sec": 11.08,
|
| 245 |
+
"avg_sequence_length": 144,
|
| 246 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 247 |
+
},
|
| 248 |
+
{
|
| 249 |
+
"original_filename": "jogging_pexels_5319440.mp4",
|
| 250 |
+
"exported_frames": 105,
|
| 251 |
+
"fps": 25.0,
|
| 252 |
+
"stride": 3,
|
| 253 |
+
"quality_score": 0.7764,
|
| 254 |
+
"estimated_source_duration_sec": 15.16,
|
| 255 |
+
"avg_sequence_length": 105,
|
| 256 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 257 |
+
},
|
| 258 |
+
{
|
| 259 |
+
"original_filename": "jogging_pexels_5319443.mp4",
|
| 260 |
+
"exported_frames": 126,
|
| 261 |
+
"fps": 25.0,
|
| 262 |
+
"stride": 3,
|
| 263 |
+
"quality_score": 0.8349,
|
| 264 |
+
"estimated_source_duration_sec": 9.24,
|
| 265 |
+
"avg_sequence_length": 126,
|
| 266 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"original_filename": "jogging_pexels_5319445.mp4",
|
| 270 |
+
"exported_frames": 141,
|
| 271 |
+
"fps": 25.0,
|
| 272 |
+
"stride": 3,
|
| 273 |
+
"quality_score": 0.7426,
|
| 274 |
+
"estimated_source_duration_sec": 9.44,
|
| 275 |
+
"avg_sequence_length": 141,
|
| 276 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 277 |
+
},
|
| 278 |
+
{
|
| 279 |
+
"original_filename": "jogging_pexels_5319447.mp4",
|
| 280 |
+
"exported_frames": 684,
|
| 281 |
+
"fps": 25.0,
|
| 282 |
+
"stride": 3,
|
| 283 |
+
"quality_score": 0.7955,
|
| 284 |
+
"estimated_source_duration_sec": 28.76,
|
| 285 |
+
"avg_sequence_length": 684,
|
| 286 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 287 |
+
},
|
| 288 |
+
{
|
| 289 |
+
"original_filename": "jogging_pexels_5319457.mp4",
|
| 290 |
+
"exported_frames": 147,
|
| 291 |
+
"fps": 25.0,
|
| 292 |
+
"stride": 3,
|
| 293 |
+
"quality_score": 0.754,
|
| 294 |
+
"estimated_source_duration_sec": 9.32,
|
| 295 |
+
"avg_sequence_length": 147,
|
| 296 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 297 |
+
},
|
| 298 |
+
{
|
| 299 |
+
"original_filename": "jogging_pexels_5319531.mp4",
|
| 300 |
+
"exported_frames": 123,
|
| 301 |
+
"fps": 25.0,
|
| 302 |
+
"stride": 3,
|
| 303 |
+
"quality_score": 0.8718,
|
| 304 |
+
"estimated_source_duration_sec": 7.24,
|
| 305 |
+
"avg_sequence_length": 123,
|
| 306 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"original_filename": "jogging_pexels_5677457.mp4",
|
| 310 |
+
"exported_frames": 339,
|
| 311 |
+
"fps": 24.0,
|
| 312 |
+
"stride": 3,
|
| 313 |
+
"quality_score": 0.9001,
|
| 314 |
+
"estimated_source_duration_sec": 15.42,
|
| 315 |
+
"avg_sequence_length": 339,
|
| 316 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 317 |
+
},
|
| 318 |
+
{
|
| 319 |
+
"original_filename": "jogging_pexels_6454248.mp4",
|
| 320 |
+
"exported_frames": 240,
|
| 321 |
+
"fps": 23.976023976023978,
|
| 322 |
+
"stride": 3,
|
| 323 |
+
"quality_score": 0.873,
|
| 324 |
+
"estimated_source_duration_sec": 10.01,
|
| 325 |
+
"avg_sequence_length": 240,
|
| 326 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 327 |
+
},
|
| 328 |
+
{
|
| 329 |
+
"original_filename": "jogging_pexels_6548022.mp4",
|
| 330 |
+
"exported_frames": 159,
|
| 331 |
+
"fps": 23.976023976023978,
|
| 332 |
+
"stride": 3,
|
| 333 |
+
"quality_score": 0.897,
|
| 334 |
+
"estimated_source_duration_sec": 10.01,
|
| 335 |
+
"avg_sequence_length": 159,
|
| 336 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 337 |
+
},
|
| 338 |
+
{
|
| 339 |
+
"original_filename": "jogging_pexels_7263170.mp4",
|
| 340 |
+
"exported_frames": 66,
|
| 341 |
+
"fps": 23.976023976023978,
|
| 342 |
+
"stride": 3,
|
| 343 |
+
"quality_score": 0.8102,
|
| 344 |
+
"estimated_source_duration_sec": 10.01,
|
| 345 |
+
"avg_sequence_length": 66,
|
| 346 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 347 |
+
},
|
| 348 |
+
{
|
| 349 |
+
"original_filename": "jogging_pexels_7866023.mp4",
|
| 350 |
+
"exported_frames": 207,
|
| 351 |
+
"fps": 23.976023976023978,
|
| 352 |
+
"stride": 3,
|
| 353 |
+
"quality_score": 0.8936,
|
| 354 |
+
"estimated_source_duration_sec": 10.01,
|
| 355 |
+
"avg_sequence_length": 207,
|
| 356 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 357 |
+
},
|
| 358 |
+
{
|
| 359 |
+
"original_filename": "jogging_pexels_7884055.mp4",
|
| 360 |
+
"exported_frames": 393,
|
| 361 |
+
"fps": 25.0,
|
| 362 |
+
"stride": 3,
|
| 363 |
+
"quality_score": 0.9231,
|
| 364 |
+
"estimated_source_duration_sec": 15.64,
|
| 365 |
+
"avg_sequence_length": 393,
|
| 366 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 367 |
+
},
|
| 368 |
+
{
|
| 369 |
+
"original_filename": "jogging_pexels_8343998.mp4",
|
| 370 |
+
"exported_frames": 411,
|
| 371 |
+
"fps": 25.0,
|
| 372 |
+
"stride": 3,
|
| 373 |
+
"quality_score": 0.8404,
|
| 374 |
+
"estimated_source_duration_sec": 18.0,
|
| 375 |
+
"avg_sequence_length": 411,
|
| 376 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 377 |
+
},
|
| 378 |
+
{
|
| 379 |
+
"original_filename": "jogging_pexels_8343999.mp4",
|
| 380 |
+
"exported_frames": 258,
|
| 381 |
+
"fps": 25.0,
|
| 382 |
+
"stride": 3,
|
| 383 |
+
"quality_score": 0.7625,
|
| 384 |
+
"estimated_source_duration_sec": 16.24,
|
| 385 |
+
"avg_sequence_length": 258,
|
| 386 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 387 |
+
},
|
| 388 |
+
{
|
| 389 |
+
"original_filename": "jogging_pexels_8344007.mp4",
|
| 390 |
+
"exported_frames": 408,
|
| 391 |
+
"fps": 25.0,
|
| 392 |
+
"stride": 3,
|
| 393 |
+
"quality_score": 0.9313,
|
| 394 |
+
"estimated_source_duration_sec": 17.12,
|
| 395 |
+
"avg_sequence_length": 408,
|
| 396 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 397 |
+
},
|
| 398 |
+
{
|
| 399 |
+
"original_filename": "jogging_pexels_8344009.mp4",
|
| 400 |
+
"exported_frames": 99,
|
| 401 |
+
"fps": 25.0,
|
| 402 |
+
"stride": 3,
|
| 403 |
+
"quality_score": 0.7883,
|
| 404 |
+
"estimated_source_duration_sec": 20.16,
|
| 405 |
+
"avg_sequence_length": 99,
|
| 406 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 407 |
+
},
|
| 408 |
+
{
|
| 409 |
+
"original_filename": "jogging_pexels_8380512.mp4",
|
| 410 |
+
"exported_frames": 150,
|
| 411 |
+
"fps": 25.0,
|
| 412 |
+
"stride": 3,
|
| 413 |
+
"quality_score": 0.8659,
|
| 414 |
+
"estimated_source_duration_sec": 7.88,
|
| 415 |
+
"avg_sequence_length": 150,
|
| 416 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 417 |
+
},
|
| 418 |
+
{
|
| 419 |
+
"original_filename": "jogging_pexels_8380513.mp4",
|
| 420 |
+
"exported_frames": 405,
|
| 421 |
+
"fps": 25.0,
|
| 422 |
+
"stride": 3,
|
| 423 |
+
"quality_score": 0.9119,
|
| 424 |
+
"estimated_source_duration_sec": 16.32,
|
| 425 |
+
"avg_sequence_length": 405,
|
| 426 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 427 |
+
},
|
| 428 |
+
{
|
| 429 |
+
"original_filename": "jogging_pexels_8380521.mp4",
|
| 430 |
+
"exported_frames": 204,
|
| 431 |
+
"fps": 25.0,
|
| 432 |
+
"stride": 3,
|
| 433 |
+
"quality_score": 0.7829,
|
| 434 |
+
"estimated_source_duration_sec": 15.56,
|
| 435 |
+
"avg_sequence_length": 204,
|
| 436 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 437 |
+
},
|
| 438 |
+
{
|
| 439 |
+
"original_filename": "jogging_pexels_8380719.mp4",
|
| 440 |
+
"exported_frames": 48,
|
| 441 |
+
"fps": 25.0,
|
| 442 |
+
"stride": 3,
|
| 443 |
+
"quality_score": 0.8203,
|
| 444 |
+
"estimated_source_duration_sec": 10.52,
|
| 445 |
+
"avg_sequence_length": 48,
|
| 446 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 447 |
+
},
|
| 448 |
+
{
|
| 449 |
+
"original_filename": "jogging_pexels_8380730.mp4",
|
| 450 |
+
"exported_frames": 0,
|
| 451 |
+
"fps": 25.0,
|
| 452 |
+
"stride": 3,
|
| 453 |
+
"quality_score": 0.0,
|
| 454 |
+
"estimated_source_duration_sec": 12.16,
|
| 455 |
+
"avg_sequence_length": 0,
|
| 456 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"original_filename": "jogging_pexels_8380731.mp4",
|
| 460 |
+
"exported_frames": 462,
|
| 461 |
+
"fps": 25.0,
|
| 462 |
+
"stride": 3,
|
| 463 |
+
"quality_score": 0.7702,
|
| 464 |
+
"estimated_source_duration_sec": 21.36,
|
| 465 |
+
"avg_sequence_length": 462,
|
| 466 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 467 |
+
},
|
| 468 |
+
{
|
| 469 |
+
"original_filename": "jogging_pexels_8402121.mp4",
|
| 470 |
+
"exported_frames": 288,
|
| 471 |
+
"fps": 30.0,
|
| 472 |
+
"stride": 3,
|
| 473 |
+
"quality_score": 0.8704,
|
| 474 |
+
"estimated_source_duration_sec": 12.1,
|
| 475 |
+
"avg_sequence_length": 288,
|
| 476 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"original_filename": "jogging_pexels_8484736.mp4",
|
| 480 |
+
"exported_frames": 339,
|
| 481 |
+
"fps": 29.97002997002997,
|
| 482 |
+
"stride": 3,
|
| 483 |
+
"quality_score": 0.9132,
|
| 484 |
+
"estimated_source_duration_sec": 13.28,
|
| 485 |
+
"avg_sequence_length": 339,
|
| 486 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 487 |
+
},
|
| 488 |
+
{
|
| 489 |
+
"original_filename": "jogging_pexels_8484866.mp4",
|
| 490 |
+
"exported_frames": 228,
|
| 491 |
+
"fps": 23.976023976023978,
|
| 492 |
+
"stride": 3,
|
| 493 |
+
"quality_score": 0.8208,
|
| 494 |
+
"estimated_source_duration_sec": 10.09,
|
| 495 |
+
"avg_sequence_length": 228,
|
| 496 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 497 |
+
},
|
| 498 |
+
{
|
| 499 |
+
"original_filename": "jogging_pexels_8637052.mp4",
|
| 500 |
+
"exported_frames": 387,
|
| 501 |
+
"fps": 25.0,
|
| 502 |
+
"stride": 3,
|
| 503 |
+
"quality_score": 0.8051,
|
| 504 |
+
"estimated_source_duration_sec": 15.48,
|
| 505 |
+
"avg_sequence_length": 387,
|
| 506 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 507 |
+
},
|
| 508 |
+
{
|
| 509 |
+
"original_filename": "jogging_pexels_8637185.mp4",
|
| 510 |
+
"exported_frames": 360,
|
| 511 |
+
"fps": 25.0,
|
| 512 |
+
"stride": 3,
|
| 513 |
+
"quality_score": 0.8253,
|
| 514 |
+
"estimated_source_duration_sec": 20.24,
|
| 515 |
+
"avg_sequence_length": 360,
|
| 516 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 517 |
+
},
|
| 518 |
+
{
|
| 519 |
+
"original_filename": "jogging_pexels_8637697.mp4",
|
| 520 |
+
"exported_frames": 327,
|
| 521 |
+
"fps": 25.0,
|
| 522 |
+
"stride": 3,
|
| 523 |
+
"quality_score": 0.7624,
|
| 524 |
+
"estimated_source_duration_sec": 19.56,
|
| 525 |
+
"avg_sequence_length": 327,
|
| 526 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 527 |
+
},
|
| 528 |
+
{
|
| 529 |
+
"original_filename": "jogging_pexels_8691046.mp4",
|
| 530 |
+
"exported_frames": 9,
|
| 531 |
+
"fps": 24.0,
|
| 532 |
+
"stride": 3,
|
| 533 |
+
"quality_score": 0.7354,
|
| 534 |
+
"estimated_source_duration_sec": 17.38,
|
| 535 |
+
"avg_sequence_length": 9,
|
| 536 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 537 |
+
},
|
| 538 |
+
{
|
| 539 |
+
"original_filename": "jogging_pexels_8795407.mp4",
|
| 540 |
+
"exported_frames": 219,
|
| 541 |
+
"fps": 24.0,
|
| 542 |
+
"stride": 3,
|
| 543 |
+
"quality_score": 0.8702,
|
| 544 |
+
"estimated_source_duration_sec": 11.92,
|
| 545 |
+
"avg_sequence_length": 219,
|
| 546 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 547 |
+
},
|
| 548 |
+
{
|
| 549 |
+
"original_filename": "jogging_pexels_8795486.mp4",
|
| 550 |
+
"exported_frames": 375,
|
| 551 |
+
"fps": 24.0,
|
| 552 |
+
"stride": 3,
|
| 553 |
+
"quality_score": 0.9034,
|
| 554 |
+
"estimated_source_duration_sec": 25.42,
|
| 555 |
+
"avg_sequence_length": 375,
|
| 556 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 557 |
+
},
|
| 558 |
+
{
|
| 559 |
+
"original_filename": "jogging_pexels_19538623.mp4",
|
| 560 |
+
"exported_frames": 609,
|
| 561 |
+
"fps": 23.976023976023978,
|
| 562 |
+
"stride": 3,
|
| 563 |
+
"quality_score": 0.9184,
|
| 564 |
+
"estimated_source_duration_sec": 25.65,
|
| 565 |
+
"avg_sequence_length": 609,
|
| 566 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 567 |
+
},
|
| 568 |
+
{
|
| 569 |
+
"original_filename": "jogging_pexels_27451763.mp4",
|
| 570 |
+
"exported_frames": 156,
|
| 571 |
+
"fps": 30.0,
|
| 572 |
+
"stride": 3,
|
| 573 |
+
"quality_score": 0.7539,
|
| 574 |
+
"estimated_source_duration_sec": 5.8,
|
| 575 |
+
"avg_sequence_length": 156,
|
| 576 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 577 |
+
},
|
| 578 |
+
{
|
| 579 |
+
"original_filename": "jogging_pexels_32305070.mp4",
|
| 580 |
+
"exported_frames": 507,
|
| 581 |
+
"fps": 23.976023976023978,
|
| 582 |
+
"stride": 3,
|
| 583 |
+
"quality_score": 0.8659,
|
| 584 |
+
"estimated_source_duration_sec": 32.53,
|
| 585 |
+
"avg_sequence_length": 507,
|
| 586 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 587 |
+
},
|
| 588 |
+
{
|
| 589 |
+
"original_filename": "jogging_pexels_32620156.mp4",
|
| 590 |
+
"exported_frames": 495,
|
| 591 |
+
"fps": 23.976023976023978,
|
| 592 |
+
"stride": 3,
|
| 593 |
+
"quality_score": 0.9375,
|
| 594 |
+
"estimated_source_duration_sec": 30.7,
|
| 595 |
+
"avg_sequence_length": 495,
|
| 596 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 597 |
+
},
|
| 598 |
+
{
|
| 599 |
+
"original_filename": "jogging_pexels_32620157.mp4",
|
| 600 |
+
"exported_frames": 498,
|
| 601 |
+
"fps": 23.976023976023978,
|
| 602 |
+
"stride": 3,
|
| 603 |
+
"quality_score": 0.8999,
|
| 604 |
+
"estimated_source_duration_sec": 31.36,
|
| 605 |
+
"avg_sequence_length": 498,
|
| 606 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 607 |
+
},
|
| 608 |
+
{
|
| 609 |
+
"original_filename": "jogging_pexels_35608293.mp4",
|
| 610 |
+
"exported_frames": 42,
|
| 611 |
+
"fps": 29.97002997002997,
|
| 612 |
+
"stride": 3,
|
| 613 |
+
"quality_score": 0.8424,
|
| 614 |
+
"estimated_source_duration_sec": 7.14,
|
| 615 |
+
"avg_sequence_length": 42,
|
| 616 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 617 |
+
},
|
| 618 |
+
{
|
| 619 |
+
"original_filename": "jogging_pexels_36019497.mp4",
|
| 620 |
+
"exported_frames": 411,
|
| 621 |
+
"fps": 23.976023976023978,
|
| 622 |
+
"stride": 3,
|
| 623 |
+
"quality_score": 0.8331,
|
| 624 |
+
"estimated_source_duration_sec": 19.52,
|
| 625 |
+
"avg_sequence_length": 411,
|
| 626 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 627 |
+
},
|
| 628 |
+
{
|
| 629 |
+
"original_filename": "running_pexels_2370709.mp4",
|
| 630 |
+
"exported_frames": 348,
|
| 631 |
+
"fps": 25.0,
|
| 632 |
+
"stride": 3,
|
| 633 |
+
"quality_score": 0.7303,
|
| 634 |
+
"estimated_source_duration_sec": 44.92,
|
| 635 |
+
"avg_sequence_length": 348,
|
| 636 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 637 |
+
},
|
| 638 |
+
{
|
| 639 |
+
"original_filename": "running_pexels_2910036.mp4",
|
| 640 |
+
"exported_frames": 66,
|
| 641 |
+
"fps": 23.976023976023978,
|
| 642 |
+
"stride": 3,
|
| 643 |
+
"quality_score": 0.7382,
|
| 644 |
+
"estimated_source_duration_sec": 12.64,
|
| 645 |
+
"avg_sequence_length": 66,
|
| 646 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"original_filename": "running_pexels_3048199.mp4",
|
| 650 |
+
"exported_frames": 141,
|
| 651 |
+
"fps": 24.0,
|
| 652 |
+
"stride": 3,
|
| 653 |
+
"quality_score": 0.8824,
|
| 654 |
+
"estimated_source_duration_sec": 6.0,
|
| 655 |
+
"avg_sequence_length": 141,
|
| 656 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 657 |
+
},
|
| 658 |
+
{
|
| 659 |
+
"original_filename": "running_pexels_3048879.mp4",
|
| 660 |
+
"exported_frames": 66,
|
| 661 |
+
"fps": 24.0,
|
| 662 |
+
"stride": 3,
|
| 663 |
+
"quality_score": 0.7792,
|
| 664 |
+
"estimated_source_duration_sec": 8.83,
|
| 665 |
+
"avg_sequence_length": 66,
|
| 666 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 667 |
+
},
|
| 668 |
+
{
|
| 669 |
+
"original_filename": "running_pexels_3048928.mp4",
|
| 670 |
+
"exported_frames": 63,
|
| 671 |
+
"fps": 24.0,
|
| 672 |
+
"stride": 3,
|
| 673 |
+
"quality_score": 0.7085,
|
| 674 |
+
"estimated_source_duration_sec": 9.0,
|
| 675 |
+
"avg_sequence_length": 63,
|
| 676 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 677 |
+
},
|
| 678 |
+
{
|
| 679 |
+
"original_filename": "running_pexels_3048931.mp4",
|
| 680 |
+
"exported_frames": 228,
|
| 681 |
+
"fps": 24.0,
|
| 682 |
+
"stride": 3,
|
| 683 |
+
"quality_score": 0.8853,
|
| 684 |
+
"estimated_source_duration_sec": 10.04,
|
| 685 |
+
"avg_sequence_length": 228,
|
| 686 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 687 |
+
},
|
| 688 |
+
{
|
| 689 |
+
"original_filename": "running_pexels_3048933.mp4",
|
| 690 |
+
"exported_frames": 99,
|
| 691 |
+
"fps": 24.0,
|
| 692 |
+
"stride": 3,
|
| 693 |
+
"quality_score": 0.8342,
|
| 694 |
+
"estimated_source_duration_sec": 8.33,
|
| 695 |
+
"avg_sequence_length": 99,
|
| 696 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 697 |
+
},
|
| 698 |
+
{
|
| 699 |
+
"original_filename": "running_pexels_3048934.mp4",
|
| 700 |
+
"exported_frames": 120,
|
| 701 |
+
"fps": 24.0,
|
| 702 |
+
"stride": 3,
|
| 703 |
+
"quality_score": 0.8254,
|
| 704 |
+
"estimated_source_duration_sec": 7.0,
|
| 705 |
+
"avg_sequence_length": 120,
|
| 706 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 707 |
+
},
|
| 708 |
+
{
|
| 709 |
+
"original_filename": "running_pexels_3209011.mp4",
|
| 710 |
+
"exported_frames": 3,
|
| 711 |
+
"fps": 25.0,
|
| 712 |
+
"stride": 3,
|
| 713 |
+
"quality_score": 0.8595,
|
| 714 |
+
"estimated_source_duration_sec": 10.48,
|
| 715 |
+
"avg_sequence_length": 3,
|
| 716 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 717 |
+
},
|
| 718 |
+
{
|
| 719 |
+
"original_filename": "running_pexels_3209242.mp4",
|
| 720 |
+
"exported_frames": 36,
|
| 721 |
+
"fps": 25.0,
|
| 722 |
+
"stride": 3,
|
| 723 |
+
"quality_score": 0.6399,
|
| 724 |
+
"estimated_source_duration_sec": 9.32,
|
| 725 |
+
"avg_sequence_length": 36,
|
| 726 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 727 |
+
},
|
| 728 |
+
{
|
| 729 |
+
"original_filename": "running_pexels_3209549.mp4",
|
| 730 |
+
"exported_frames": 405,
|
| 731 |
+
"fps": 25.0,
|
| 732 |
+
"stride": 3,
|
| 733 |
+
"quality_score": 0.8293,
|
| 734 |
+
"estimated_source_duration_sec": 31.16,
|
| 735 |
+
"avg_sequence_length": 405,
|
| 736 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 737 |
+
},
|
| 738 |
+
{
|
| 739 |
+
"original_filename": "running_pexels_4065481.mp4",
|
| 740 |
+
"exported_frames": 369,
|
| 741 |
+
"fps": 29.97002997002997,
|
| 742 |
+
"stride": 3,
|
| 743 |
+
"quality_score": 0.9499,
|
| 744 |
+
"estimated_source_duration_sec": 13.18,
|
| 745 |
+
"avg_sequence_length": 369,
|
| 746 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 747 |
+
},
|
| 748 |
+
{
|
| 749 |
+
"original_filename": "running_pexels_4065567.mp4",
|
| 750 |
+
"exported_frames": 225,
|
| 751 |
+
"fps": 29.97002997002997,
|
| 752 |
+
"stride": 3,
|
| 753 |
+
"quality_score": 0.7398,
|
| 754 |
+
"estimated_source_duration_sec": 150.35,
|
| 755 |
+
"avg_sequence_length": 225,
|
| 756 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 757 |
+
},
|
| 758 |
+
{
|
| 759 |
+
"original_filename": "running_pexels_4143804.mp4",
|
| 760 |
+
"exported_frames": 537,
|
| 761 |
+
"fps": 30.0,
|
| 762 |
+
"stride": 3,
|
| 763 |
+
"quality_score": 0.8556,
|
| 764 |
+
"estimated_source_duration_sec": 24.73,
|
| 765 |
+
"avg_sequence_length": 537,
|
| 766 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 767 |
+
},
|
| 768 |
+
{
|
| 769 |
+
"original_filename": "running_pexels_4151805.mp4",
|
| 770 |
+
"exported_frames": 249,
|
| 771 |
+
"fps": 30.0,
|
| 772 |
+
"stride": 3,
|
| 773 |
+
"quality_score": 0.9169,
|
| 774 |
+
"estimated_source_duration_sec": 21.23,
|
| 775 |
+
"avg_sequence_length": 249,
|
| 776 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 777 |
+
},
|
| 778 |
+
{
|
| 779 |
+
"original_filename": "running_pexels_4742528.mp4",
|
| 780 |
+
"exported_frames": 12,
|
| 781 |
+
"fps": 25.0,
|
| 782 |
+
"stride": 3,
|
| 783 |
+
"quality_score": 0.5808,
|
| 784 |
+
"estimated_source_duration_sec": 2.6,
|
| 785 |
+
"avg_sequence_length": 12,
|
| 786 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 787 |
+
},
|
| 788 |
+
{
|
| 789 |
+
"original_filename": "running_pexels_4804795.mp4",
|
| 790 |
+
"exported_frames": 123,
|
| 791 |
+
"fps": 25.0,
|
| 792 |
+
"stride": 3,
|
| 793 |
+
"quality_score": 0.8862,
|
| 794 |
+
"estimated_source_duration_sec": 5.56,
|
| 795 |
+
"avg_sequence_length": 123,
|
| 796 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 797 |
+
},
|
| 798 |
+
{
|
| 799 |
+
"original_filename": "running_pexels_4859219.mp4",
|
| 800 |
+
"exported_frames": 24,
|
| 801 |
+
"fps": 25.0,
|
| 802 |
+
"stride": 3,
|
| 803 |
+
"quality_score": 0.8258,
|
| 804 |
+
"estimated_source_duration_sec": 10.36,
|
| 805 |
+
"avg_sequence_length": 24,
|
| 806 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 807 |
+
},
|
| 808 |
+
{
|
| 809 |
+
"original_filename": "running_pexels_4859234.mp4",
|
| 810 |
+
"exported_frames": 6,
|
| 811 |
+
"fps": 25.0,
|
| 812 |
+
"stride": 3,
|
| 813 |
+
"quality_score": 0.7117,
|
| 814 |
+
"estimated_source_duration_sec": 4.72,
|
| 815 |
+
"avg_sequence_length": 6,
|
| 816 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 817 |
+
},
|
| 818 |
+
{
|
| 819 |
+
"original_filename": "running_pexels_4945121.mp4",
|
| 820 |
+
"exported_frames": 3,
|
| 821 |
+
"fps": 24.0,
|
| 822 |
+
"stride": 3,
|
| 823 |
+
"quality_score": 0.8508,
|
| 824 |
+
"estimated_source_duration_sec": 13.12,
|
| 825 |
+
"avg_sequence_length": 3,
|
| 826 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 827 |
+
},
|
| 828 |
+
{
|
| 829 |
+
"original_filename": "running_pexels_4994624.mp4",
|
| 830 |
+
"exported_frames": 105,
|
| 831 |
+
"fps": 29.97002997002997,
|
| 832 |
+
"stride": 3,
|
| 833 |
+
"quality_score": 0.7539,
|
| 834 |
+
"estimated_source_duration_sec": 6.34,
|
| 835 |
+
"avg_sequence_length": 105,
|
| 836 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"original_filename": "running_pexels_5033913.mp4",
|
| 840 |
+
"exported_frames": 204,
|
| 841 |
+
"fps": 29.97002997002997,
|
| 842 |
+
"stride": 3,
|
| 843 |
+
"quality_score": 0.8161,
|
| 844 |
+
"estimated_source_duration_sec": 9.51,
|
| 845 |
+
"avg_sequence_length": 204,
|
| 846 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 847 |
+
},
|
| 848 |
+
{
|
| 849 |
+
"original_filename": "running_pexels_5034569.mp4",
|
| 850 |
+
"exported_frames": 294,
|
| 851 |
+
"fps": 29.97002997002997,
|
| 852 |
+
"stride": 3,
|
| 853 |
+
"quality_score": 0.8591,
|
| 854 |
+
"estimated_source_duration_sec": 9.84,
|
| 855 |
+
"avg_sequence_length": 294,
|
| 856 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 857 |
+
},
|
| 858 |
+
{
|
| 859 |
+
"original_filename": "running_pexels_5034574.mp4",
|
| 860 |
+
"exported_frames": 435,
|
| 861 |
+
"fps": 29.97002997002997,
|
| 862 |
+
"stride": 3,
|
| 863 |
+
"quality_score": 0.8693,
|
| 864 |
+
"estimated_source_duration_sec": 16.52,
|
| 865 |
+
"avg_sequence_length": 435,
|
| 866 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 867 |
+
},
|
| 868 |
+
{
|
| 869 |
+
"original_filename": "running_pexels_5310854.mp4",
|
| 870 |
+
"exported_frames": 90,
|
| 871 |
+
"fps": 25.0,
|
| 872 |
+
"stride": 3,
|
| 873 |
+
"quality_score": 0.7022,
|
| 874 |
+
"estimated_source_duration_sec": 12.6,
|
| 875 |
+
"avg_sequence_length": 90,
|
| 876 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 877 |
+
},
|
| 878 |
+
{
|
| 879 |
+
"original_filename": "running_pexels_5310959.mp4",
|
| 880 |
+
"exported_frames": 297,
|
| 881 |
+
"fps": 25.0,
|
| 882 |
+
"stride": 3,
|
| 883 |
+
"quality_score": 0.9173,
|
| 884 |
+
"estimated_source_duration_sec": 13.56,
|
| 885 |
+
"avg_sequence_length": 297,
|
| 886 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 887 |
+
},
|
| 888 |
+
{
|
| 889 |
+
"original_filename": "running_pexels_5310971.mp4",
|
| 890 |
+
"exported_frames": 27,
|
| 891 |
+
"fps": 25.0,
|
| 892 |
+
"stride": 3,
|
| 893 |
+
"quality_score": 0.7116,
|
| 894 |
+
"estimated_source_duration_sec": 5.96,
|
| 895 |
+
"avg_sequence_length": 27,
|
| 896 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 897 |
+
},
|
| 898 |
+
{
|
| 899 |
+
"original_filename": "running_pexels_5319341.mp4",
|
| 900 |
+
"exported_frames": 54,
|
| 901 |
+
"fps": 25.0,
|
| 902 |
+
"stride": 3,
|
| 903 |
+
"quality_score": 0.7118,
|
| 904 |
+
"estimated_source_duration_sec": 12.08,
|
| 905 |
+
"avg_sequence_length": 54,
|
| 906 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 907 |
+
},
|
| 908 |
+
{
|
| 909 |
+
"original_filename": "running_pexels_5319351.mp4",
|
| 910 |
+
"exported_frames": 267,
|
| 911 |
+
"fps": 25.0,
|
| 912 |
+
"stride": 3,
|
| 913 |
+
"quality_score": 0.8863,
|
| 914 |
+
"estimated_source_duration_sec": 20.56,
|
| 915 |
+
"avg_sequence_length": 267,
|
| 916 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 917 |
+
},
|
| 918 |
+
{
|
| 919 |
+
"original_filename": "running_pexels_5319440.mp4",
|
| 920 |
+
"exported_frames": 105,
|
| 921 |
+
"fps": 25.0,
|
| 922 |
+
"stride": 3,
|
| 923 |
+
"quality_score": 0.7778,
|
| 924 |
+
"estimated_source_duration_sec": 15.16,
|
| 925 |
+
"avg_sequence_length": 105,
|
| 926 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 927 |
+
},
|
| 928 |
+
{
|
| 929 |
+
"original_filename": "running_pexels_5319443.mp4",
|
| 930 |
+
"exported_frames": 126,
|
| 931 |
+
"fps": 25.0,
|
| 932 |
+
"stride": 3,
|
| 933 |
+
"quality_score": 0.8344,
|
| 934 |
+
"estimated_source_duration_sec": 9.24,
|
| 935 |
+
"avg_sequence_length": 126,
|
| 936 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 937 |
+
},
|
| 938 |
+
{
|
| 939 |
+
"original_filename": "running_pexels_5319445.mp4",
|
| 940 |
+
"exported_frames": 141,
|
| 941 |
+
"fps": 25.0,
|
| 942 |
+
"stride": 3,
|
| 943 |
+
"quality_score": 0.7412,
|
| 944 |
+
"estimated_source_duration_sec": 9.44,
|
| 945 |
+
"avg_sequence_length": 141,
|
| 946 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 947 |
+
},
|
| 948 |
+
{
|
| 949 |
+
"original_filename": "running_pexels_5319449.mp4",
|
| 950 |
+
"exported_frames": 96,
|
| 951 |
+
"fps": 25.0,
|
| 952 |
+
"stride": 3,
|
| 953 |
+
"quality_score": 0.7316,
|
| 954 |
+
"estimated_source_duration_sec": 9.08,
|
| 955 |
+
"avg_sequence_length": 96,
|
| 956 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 957 |
+
},
|
| 958 |
+
{
|
| 959 |
+
"original_filename": "running_pexels_5319452.mp4",
|
| 960 |
+
"exported_frames": 402,
|
| 961 |
+
"fps": 25.0,
|
| 962 |
+
"stride": 3,
|
| 963 |
+
"quality_score": 0.8822,
|
| 964 |
+
"estimated_source_duration_sec": 19.72,
|
| 965 |
+
"avg_sequence_length": 402,
|
| 966 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 967 |
+
},
|
| 968 |
+
{
|
| 969 |
+
"original_filename": "running_pexels_5319457.mp4",
|
| 970 |
+
"exported_frames": 147,
|
| 971 |
+
"fps": 25.0,
|
| 972 |
+
"stride": 3,
|
| 973 |
+
"quality_score": 0.7638,
|
| 974 |
+
"estimated_source_duration_sec": 9.32,
|
| 975 |
+
"avg_sequence_length": 147,
|
| 976 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 977 |
+
},
|
| 978 |
+
{
|
| 979 |
+
"original_filename": "running_pexels_5319999.mp4",
|
| 980 |
+
"exported_frames": 60,
|
| 981 |
+
"fps": 25.0,
|
| 982 |
+
"stride": 3,
|
| 983 |
+
"quality_score": 0.714,
|
| 984 |
+
"estimated_source_duration_sec": 22.6,
|
| 985 |
+
"avg_sequence_length": 60,
|
| 986 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 987 |
+
},
|
| 988 |
+
{
|
| 989 |
+
"original_filename": "running_pexels_5389502.mp4",
|
| 990 |
+
"exported_frames": 21,
|
| 991 |
+
"fps": 29.97002997002997,
|
| 992 |
+
"stride": 3,
|
| 993 |
+
"quality_score": 0.7488,
|
| 994 |
+
"estimated_source_duration_sec": 19.02,
|
| 995 |
+
"avg_sequence_length": 21,
|
| 996 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 997 |
+
},
|
| 998 |
+
{
|
| 999 |
+
"original_filename": "running_pexels_5674267.mp4",
|
| 1000 |
+
"exported_frames": 471,
|
| 1001 |
+
"fps": 23.976023976023978,
|
| 1002 |
+
"stride": 3,
|
| 1003 |
+
"quality_score": 0.9252,
|
| 1004 |
+
"estimated_source_duration_sec": 24.52,
|
| 1005 |
+
"avg_sequence_length": 471,
|
| 1006 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1007 |
+
},
|
| 1008 |
+
{
|
| 1009 |
+
"original_filename": "running_pexels_5677393.mp4",
|
| 1010 |
+
"exported_frames": 78,
|
| 1011 |
+
"fps": 24.0,
|
| 1012 |
+
"stride": 3,
|
| 1013 |
+
"quality_score": 0.6892,
|
| 1014 |
+
"estimated_source_duration_sec": 16.96,
|
| 1015 |
+
"avg_sequence_length": 78,
|
| 1016 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1017 |
+
},
|
| 1018 |
+
{
|
| 1019 |
+
"original_filename": "running_pexels_5677396.mp4",
|
| 1020 |
+
"exported_frames": 189,
|
| 1021 |
+
"fps": 24.0,
|
| 1022 |
+
"stride": 3,
|
| 1023 |
+
"quality_score": 0.7516,
|
| 1024 |
+
"estimated_source_duration_sec": 27.58,
|
| 1025 |
+
"avg_sequence_length": 189,
|
| 1026 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1027 |
+
},
|
| 1028 |
+
{
|
| 1029 |
+
"original_filename": "running_pexels_5677449.mp4",
|
| 1030 |
+
"exported_frames": 372,
|
| 1031 |
+
"fps": 24.0,
|
| 1032 |
+
"stride": 3,
|
| 1033 |
+
"quality_score": 0.8315,
|
| 1034 |
+
"estimated_source_duration_sec": 35.29,
|
| 1035 |
+
"avg_sequence_length": 372,
|
| 1036 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1037 |
+
},
|
| 1038 |
+
{
|
| 1039 |
+
"original_filename": "running_pexels_5677457.mp4",
|
| 1040 |
+
"exported_frames": 339,
|
| 1041 |
+
"fps": 24.0,
|
| 1042 |
+
"stride": 3,
|
| 1043 |
+
"quality_score": 0.8978,
|
| 1044 |
+
"estimated_source_duration_sec": 15.42,
|
| 1045 |
+
"avg_sequence_length": 339,
|
| 1046 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1047 |
+
},
|
| 1048 |
+
{
|
| 1049 |
+
"original_filename": "running_pexels_5929358.mp4",
|
| 1050 |
+
"exported_frames": 342,
|
| 1051 |
+
"fps": 25.0,
|
| 1052 |
+
"stride": 3,
|
| 1053 |
+
"quality_score": 0.8366,
|
| 1054 |
+
"estimated_source_duration_sec": 14.76,
|
| 1055 |
+
"avg_sequence_length": 342,
|
| 1056 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1057 |
+
},
|
| 1058 |
+
{
|
| 1059 |
+
"original_filename": "running_pexels_6573735.mp4",
|
| 1060 |
+
"exported_frames": 276,
|
| 1061 |
+
"fps": 23.976023976023978,
|
| 1062 |
+
"stride": 3,
|
| 1063 |
+
"quality_score": 0.8619,
|
| 1064 |
+
"estimated_source_duration_sec": 12.18,
|
| 1065 |
+
"avg_sequence_length": 276,
|
| 1066 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1067 |
+
},
|
| 1068 |
+
{
|
| 1069 |
+
"original_filename": "running_pexels_7179290.mp4",
|
| 1070 |
+
"exported_frames": 342,
|
| 1071 |
+
"fps": 25.0,
|
| 1072 |
+
"stride": 3,
|
| 1073 |
+
"quality_score": 0.9246,
|
| 1074 |
+
"estimated_source_duration_sec": 15.16,
|
| 1075 |
+
"avg_sequence_length": 342,
|
| 1076 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1077 |
+
},
|
| 1078 |
+
{
|
| 1079 |
+
"original_filename": "running_pexels_7187086.mp4",
|
| 1080 |
+
"exported_frames": 222,
|
| 1081 |
+
"fps": 24.0,
|
| 1082 |
+
"stride": 3,
|
| 1083 |
+
"quality_score": 0.8518,
|
| 1084 |
+
"estimated_source_duration_sec": 9.17,
|
| 1085 |
+
"avg_sequence_length": 222,
|
| 1086 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1087 |
+
},
|
| 1088 |
+
{
|
| 1089 |
+
"original_filename": "running_pexels_7187092.mp4",
|
| 1090 |
+
"exported_frames": 168,
|
| 1091 |
+
"fps": 24.0,
|
| 1092 |
+
"stride": 3,
|
| 1093 |
+
"quality_score": 0.8561,
|
| 1094 |
+
"estimated_source_duration_sec": 7.92,
|
| 1095 |
+
"avg_sequence_length": 168,
|
| 1096 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1097 |
+
},
|
| 1098 |
+
{
|
| 1099 |
+
"original_filename": "running_pexels_7884001.mp4",
|
| 1100 |
+
"exported_frames": 45,
|
| 1101 |
+
"fps": 25.0,
|
| 1102 |
+
"stride": 3,
|
| 1103 |
+
"quality_score": 0.8439,
|
| 1104 |
+
"estimated_source_duration_sec": 21.84,
|
| 1105 |
+
"avg_sequence_length": 45,
|
| 1106 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1107 |
+
},
|
| 1108 |
+
{
|
| 1109 |
+
"original_filename": "running_pexels_8335615.mp4",
|
| 1110 |
+
"exported_frames": 93,
|
| 1111 |
+
"fps": 30.0,
|
| 1112 |
+
"stride": 3,
|
| 1113 |
+
"quality_score": 0.8965,
|
| 1114 |
+
"estimated_source_duration_sec": 9.0,
|
| 1115 |
+
"avg_sequence_length": 93,
|
| 1116 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1117 |
+
},
|
| 1118 |
+
{
|
| 1119 |
+
"original_filename": "running_pexels_8344006.mp4",
|
| 1120 |
+
"exported_frames": 192,
|
| 1121 |
+
"fps": 25.0,
|
| 1122 |
+
"stride": 3,
|
| 1123 |
+
"quality_score": 0.815,
|
| 1124 |
+
"estimated_source_duration_sec": 9.8,
|
| 1125 |
+
"avg_sequence_length": 192,
|
| 1126 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1127 |
+
},
|
| 1128 |
+
{
|
| 1129 |
+
"original_filename": "running_pexels_8344807.mp4",
|
| 1130 |
+
"exported_frames": 591,
|
| 1131 |
+
"fps": 25.0,
|
| 1132 |
+
"stride": 3,
|
| 1133 |
+
"quality_score": 0.9429,
|
| 1134 |
+
"estimated_source_duration_sec": 24.4,
|
| 1135 |
+
"avg_sequence_length": 591,
|
| 1136 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1137 |
+
},
|
| 1138 |
+
{
|
| 1139 |
+
"original_filename": "running_pexels_8344814.mp4",
|
| 1140 |
+
"exported_frames": 207,
|
| 1141 |
+
"fps": 25.0,
|
| 1142 |
+
"stride": 3,
|
| 1143 |
+
"quality_score": 0.7641,
|
| 1144 |
+
"estimated_source_duration_sec": 24.32,
|
| 1145 |
+
"avg_sequence_length": 207,
|
| 1146 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1147 |
+
},
|
| 1148 |
+
{
|
| 1149 |
+
"original_filename": "running_pexels_8344815.mp4",
|
| 1150 |
+
"exported_frames": 0,
|
| 1151 |
+
"fps": 25.0,
|
| 1152 |
+
"stride": 3,
|
| 1153 |
+
"quality_score": 0.0,
|
| 1154 |
+
"estimated_source_duration_sec": 15.84,
|
| 1155 |
+
"avg_sequence_length": 0,
|
| 1156 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1157 |
+
},
|
| 1158 |
+
{
|
| 1159 |
+
"original_filename": "running_pexels_8380512.mp4",
|
| 1160 |
+
"exported_frames": 165,
|
| 1161 |
+
"fps": 25.0,
|
| 1162 |
+
"stride": 3,
|
| 1163 |
+
"quality_score": 0.8616,
|
| 1164 |
+
"estimated_source_duration_sec": 7.88,
|
| 1165 |
+
"avg_sequence_length": 165,
|
| 1166 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1167 |
+
},
|
| 1168 |
+
{
|
| 1169 |
+
"original_filename": "running_pexels_8380513.mp4",
|
| 1170 |
+
"exported_frames": 405,
|
| 1171 |
+
"fps": 25.0,
|
| 1172 |
+
"stride": 3,
|
| 1173 |
+
"quality_score": 0.9104,
|
| 1174 |
+
"estimated_source_duration_sec": 16.32,
|
| 1175 |
+
"avg_sequence_length": 405,
|
| 1176 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1177 |
+
},
|
| 1178 |
+
{
|
| 1179 |
+
"original_filename": "running_pexels_8380514.mp4",
|
| 1180 |
+
"exported_frames": 606,
|
| 1181 |
+
"fps": 25.0,
|
| 1182 |
+
"stride": 3,
|
| 1183 |
+
"quality_score": 0.8293,
|
| 1184 |
+
"estimated_source_duration_sec": 24.24,
|
| 1185 |
+
"avg_sequence_length": 606,
|
| 1186 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1187 |
+
},
|
| 1188 |
+
{
|
| 1189 |
+
"original_filename": "running_pexels_8380716.mp4",
|
| 1190 |
+
"exported_frames": 264,
|
| 1191 |
+
"fps": 25.0,
|
| 1192 |
+
"stride": 3,
|
| 1193 |
+
"quality_score": 0.7773,
|
| 1194 |
+
"estimated_source_duration_sec": 14.6,
|
| 1195 |
+
"avg_sequence_length": 264,
|
| 1196 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1197 |
+
},
|
| 1198 |
+
{
|
| 1199 |
+
"original_filename": "running_pexels_8380719.mp4",
|
| 1200 |
+
"exported_frames": 18,
|
| 1201 |
+
"fps": 25.0,
|
| 1202 |
+
"stride": 3,
|
| 1203 |
+
"quality_score": 0.717,
|
| 1204 |
+
"estimated_source_duration_sec": 10.52,
|
| 1205 |
+
"avg_sequence_length": 18,
|
| 1206 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1207 |
+
},
|
| 1208 |
+
{
|
| 1209 |
+
"original_filename": "running_pexels_8380729.mp4",
|
| 1210 |
+
"exported_frames": 270,
|
| 1211 |
+
"fps": 25.0,
|
| 1212 |
+
"stride": 3,
|
| 1213 |
+
"quality_score": 0.8837,
|
| 1214 |
+
"estimated_source_duration_sec": 13.84,
|
| 1215 |
+
"avg_sequence_length": 270,
|
| 1216 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1217 |
+
},
|
| 1218 |
+
{
|
| 1219 |
+
"original_filename": "running_pexels_8380730.mp4",
|
| 1220 |
+
"exported_frames": 0,
|
| 1221 |
+
"fps": 25.0,
|
| 1222 |
+
"stride": 3,
|
| 1223 |
+
"quality_score": 0.0,
|
| 1224 |
+
"estimated_source_duration_sec": 12.16,
|
| 1225 |
+
"avg_sequence_length": 0,
|
| 1226 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1227 |
+
},
|
| 1228 |
+
{
|
| 1229 |
+
"original_filename": "running_pexels_8380731.mp4",
|
| 1230 |
+
"exported_frames": 435,
|
| 1231 |
+
"fps": 25.0,
|
| 1232 |
+
"stride": 3,
|
| 1233 |
+
"quality_score": 0.7827,
|
| 1234 |
+
"estimated_source_duration_sec": 21.36,
|
| 1235 |
+
"avg_sequence_length": 435,
|
| 1236 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1237 |
+
},
|
| 1238 |
+
{
|
| 1239 |
+
"original_filename": "running_pexels_8401280.mp4",
|
| 1240 |
+
"exported_frames": 18,
|
| 1241 |
+
"fps": 30.0,
|
| 1242 |
+
"stride": 3,
|
| 1243 |
+
"quality_score": 0.7411,
|
| 1244 |
+
"estimated_source_duration_sec": 8.63,
|
| 1245 |
+
"avg_sequence_length": 18,
|
| 1246 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1247 |
+
},
|
| 1248 |
+
{
|
| 1249 |
+
"original_filename": "running_pexels_8401329.mp4",
|
| 1250 |
+
"exported_frames": 102,
|
| 1251 |
+
"fps": 30.0,
|
| 1252 |
+
"stride": 3,
|
| 1253 |
+
"quality_score": 0.8276,
|
| 1254 |
+
"estimated_source_duration_sec": 9.6,
|
| 1255 |
+
"avg_sequence_length": 102,
|
| 1256 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1257 |
+
},
|
| 1258 |
+
{
|
| 1259 |
+
"original_filename": "running_pexels_8401339.mp4",
|
| 1260 |
+
"exported_frames": 345,
|
| 1261 |
+
"fps": 30.0,
|
| 1262 |
+
"stride": 3,
|
| 1263 |
+
"quality_score": 0.8516,
|
| 1264 |
+
"estimated_source_duration_sec": 13.17,
|
| 1265 |
+
"avg_sequence_length": 345,
|
| 1266 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1267 |
+
},
|
| 1268 |
+
{
|
| 1269 |
+
"original_filename": "running_pexels_8401340.mp4",
|
| 1270 |
+
"exported_frames": 174,
|
| 1271 |
+
"fps": 30.0,
|
| 1272 |
+
"stride": 3,
|
| 1273 |
+
"quality_score": 0.8445,
|
| 1274 |
+
"estimated_source_duration_sec": 9.77,
|
| 1275 |
+
"avg_sequence_length": 174,
|
| 1276 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1277 |
+
},
|
| 1278 |
+
{
|
| 1279 |
+
"original_filename": "running_pexels_8401385.mp4",
|
| 1280 |
+
"exported_frames": 291,
|
| 1281 |
+
"fps": 30.0,
|
| 1282 |
+
"stride": 3,
|
| 1283 |
+
"quality_score": 0.9262,
|
| 1284 |
+
"estimated_source_duration_sec": 11.0,
|
| 1285 |
+
"avg_sequence_length": 291,
|
| 1286 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1287 |
+
},
|
| 1288 |
+
{
|
| 1289 |
+
"original_filename": "running_pexels_8402092.mp4",
|
| 1290 |
+
"exported_frames": 387,
|
| 1291 |
+
"fps": 30.0,
|
| 1292 |
+
"stride": 3,
|
| 1293 |
+
"quality_score": 0.9228,
|
| 1294 |
+
"estimated_source_duration_sec": 13.1,
|
| 1295 |
+
"avg_sequence_length": 387,
|
| 1296 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1297 |
+
},
|
| 1298 |
+
{
|
| 1299 |
+
"original_filename": "running_pexels_8456640.mp4",
|
| 1300 |
+
"exported_frames": 252,
|
| 1301 |
+
"fps": 25.0,
|
| 1302 |
+
"stride": 3,
|
| 1303 |
+
"quality_score": 0.8389,
|
| 1304 |
+
"estimated_source_duration_sec": 10.16,
|
| 1305 |
+
"avg_sequence_length": 252,
|
| 1306 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1307 |
+
},
|
| 1308 |
+
{
|
| 1309 |
+
"original_filename": "running_pexels_8456642.mp4",
|
| 1310 |
+
"exported_frames": 138,
|
| 1311 |
+
"fps": 25.0,
|
| 1312 |
+
"stride": 3,
|
| 1313 |
+
"quality_score": 0.8256,
|
| 1314 |
+
"estimated_source_duration_sec": 9.64,
|
| 1315 |
+
"avg_sequence_length": 138,
|
| 1316 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1317 |
+
},
|
| 1318 |
+
{
|
| 1319 |
+
"original_filename": "running_pexels_8456662.mp4",
|
| 1320 |
+
"exported_frames": 141,
|
| 1321 |
+
"fps": 25.0,
|
| 1322 |
+
"stride": 3,
|
| 1323 |
+
"quality_score": 0.8138,
|
| 1324 |
+
"estimated_source_duration_sec": 11.0,
|
| 1325 |
+
"avg_sequence_length": 141,
|
| 1326 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"original_filename": "running_pexels_8459967.mp4",
|
| 1330 |
+
"exported_frames": 243,
|
| 1331 |
+
"fps": 25.0,
|
| 1332 |
+
"stride": 3,
|
| 1333 |
+
"quality_score": 0.9282,
|
| 1334 |
+
"estimated_source_duration_sec": 11.48,
|
| 1335 |
+
"avg_sequence_length": 243,
|
| 1336 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1337 |
+
},
|
| 1338 |
+
{
|
| 1339 |
+
"original_filename": "running_pexels_8484750.mp4",
|
| 1340 |
+
"exported_frames": 0,
|
| 1341 |
+
"fps": 29.97002997002997,
|
| 1342 |
+
"stride": 3,
|
| 1343 |
+
"quality_score": 0.0,
|
| 1344 |
+
"estimated_source_duration_sec": 10.11,
|
| 1345 |
+
"avg_sequence_length": 0,
|
| 1346 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1347 |
+
},
|
| 1348 |
+
{
|
| 1349 |
+
"original_filename": "running_pexels_8520595.mp4",
|
| 1350 |
+
"exported_frames": 0,
|
| 1351 |
+
"fps": 25.0,
|
| 1352 |
+
"stride": 3,
|
| 1353 |
+
"quality_score": 0.0,
|
| 1354 |
+
"estimated_source_duration_sec": 20.56,
|
| 1355 |
+
"avg_sequence_length": 0,
|
| 1356 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1357 |
+
},
|
| 1358 |
+
{
|
| 1359 |
+
"original_filename": "running_pexels_8533445.mp4",
|
| 1360 |
+
"exported_frames": 45,
|
| 1361 |
+
"fps": 25.0,
|
| 1362 |
+
"stride": 3,
|
| 1363 |
+
"quality_score": 0.7258,
|
| 1364 |
+
"estimated_source_duration_sec": 8.56,
|
| 1365 |
+
"avg_sequence_length": 45,
|
| 1366 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1367 |
+
},
|
| 1368 |
+
{
|
| 1369 |
+
"original_filename": "running_pexels_8533453.mp4",
|
| 1370 |
+
"exported_frames": 81,
|
| 1371 |
+
"fps": 25.0,
|
| 1372 |
+
"stride": 3,
|
| 1373 |
+
"quality_score": 0.6965,
|
| 1374 |
+
"estimated_source_duration_sec": 15.76,
|
| 1375 |
+
"avg_sequence_length": 81,
|
| 1376 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1377 |
+
},
|
| 1378 |
+
{
|
| 1379 |
+
"original_filename": "running_pexels_8533455.mp4",
|
| 1380 |
+
"exported_frames": 198,
|
| 1381 |
+
"fps": 25.0,
|
| 1382 |
+
"stride": 3,
|
| 1383 |
+
"quality_score": 0.9122,
|
| 1384 |
+
"estimated_source_duration_sec": 10.88,
|
| 1385 |
+
"avg_sequence_length": 198,
|
| 1386 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1387 |
+
},
|
| 1388 |
+
{
|
| 1389 |
+
"original_filename": "running_pexels_8533485.mp4",
|
| 1390 |
+
"exported_frames": 36,
|
| 1391 |
+
"fps": 25.0,
|
| 1392 |
+
"stride": 3,
|
| 1393 |
+
"quality_score": 0.7798,
|
| 1394 |
+
"estimated_source_duration_sec": 34.64,
|
| 1395 |
+
"avg_sequence_length": 36,
|
| 1396 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1397 |
+
},
|
| 1398 |
+
{
|
| 1399 |
+
"original_filename": "running_pexels_8533906.mp4",
|
| 1400 |
+
"exported_frames": 216,
|
| 1401 |
+
"fps": 25.0,
|
| 1402 |
+
"stride": 3,
|
| 1403 |
+
"quality_score": 0.7819,
|
| 1404 |
+
"estimated_source_duration_sec": 36.48,
|
| 1405 |
+
"avg_sequence_length": 216,
|
| 1406 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1407 |
+
},
|
| 1408 |
+
{
|
| 1409 |
+
"original_filename": "running_pexels_8533913.mp4",
|
| 1410 |
+
"exported_frames": 60,
|
| 1411 |
+
"fps": 25.0,
|
| 1412 |
+
"stride": 3,
|
| 1413 |
+
"quality_score": 0.7518,
|
| 1414 |
+
"estimated_source_duration_sec": 9.12,
|
| 1415 |
+
"avg_sequence_length": 60,
|
| 1416 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1417 |
+
},
|
| 1418 |
+
{
|
| 1419 |
+
"original_filename": "running_pexels_8544793.mp4",
|
| 1420 |
+
"exported_frames": 123,
|
| 1421 |
+
"fps": 25.0,
|
| 1422 |
+
"stride": 3,
|
| 1423 |
+
"quality_score": 0.7512,
|
| 1424 |
+
"estimated_source_duration_sec": 10.0,
|
| 1425 |
+
"avg_sequence_length": 123,
|
| 1426 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1427 |
+
},
|
| 1428 |
+
{
|
| 1429 |
+
"original_filename": "running_pexels_8636806.mp4",
|
| 1430 |
+
"exported_frames": 576,
|
| 1431 |
+
"fps": 25.0,
|
| 1432 |
+
"stride": 3,
|
| 1433 |
+
"quality_score": 0.8685,
|
| 1434 |
+
"estimated_source_duration_sec": 23.0,
|
| 1435 |
+
"avg_sequence_length": 576,
|
| 1436 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1437 |
+
},
|
| 1438 |
+
{
|
| 1439 |
+
"original_filename": "running_pexels_8637040.mp4",
|
| 1440 |
+
"exported_frames": 426,
|
| 1441 |
+
"fps": 25.0,
|
| 1442 |
+
"stride": 3,
|
| 1443 |
+
"quality_score": 0.8675,
|
| 1444 |
+
"estimated_source_duration_sec": 17.08,
|
| 1445 |
+
"avg_sequence_length": 426,
|
| 1446 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1447 |
+
},
|
| 1448 |
+
{
|
| 1449 |
+
"original_filename": "running_pexels_8644210.mp4",
|
| 1450 |
+
"exported_frames": 108,
|
| 1451 |
+
"fps": 24.0,
|
| 1452 |
+
"stride": 3,
|
| 1453 |
+
"quality_score": 0.8354,
|
| 1454 |
+
"estimated_source_duration_sec": 10.92,
|
| 1455 |
+
"avg_sequence_length": 108,
|
| 1456 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1457 |
+
},
|
| 1458 |
+
{
|
| 1459 |
+
"original_filename": "running_pexels_8691808.mp4",
|
| 1460 |
+
"exported_frames": 183,
|
| 1461 |
+
"fps": 24.0,
|
| 1462 |
+
"stride": 3,
|
| 1463 |
+
"quality_score": 0.8974,
|
| 1464 |
+
"estimated_source_duration_sec": 9.0,
|
| 1465 |
+
"avg_sequence_length": 183,
|
| 1466 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1467 |
+
},
|
| 1468 |
+
{
|
| 1469 |
+
"original_filename": "running_pexels_8795407.mp4",
|
| 1470 |
+
"exported_frames": 243,
|
| 1471 |
+
"fps": 24.0,
|
| 1472 |
+
"stride": 3,
|
| 1473 |
+
"quality_score": 0.8904,
|
| 1474 |
+
"estimated_source_duration_sec": 11.92,
|
| 1475 |
+
"avg_sequence_length": 243,
|
| 1476 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1477 |
+
},
|
| 1478 |
+
{
|
| 1479 |
+
"original_filename": "running_pexels_9835653.mp4",
|
| 1480 |
+
"exported_frames": 285,
|
| 1481 |
+
"fps": 29.97002997002997,
|
| 1482 |
+
"stride": 3,
|
| 1483 |
+
"quality_score": 0.9114,
|
| 1484 |
+
"estimated_source_duration_sec": 12.01,
|
| 1485 |
+
"avg_sequence_length": 285,
|
| 1486 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1487 |
+
},
|
| 1488 |
+
{
|
| 1489 |
+
"original_filename": "running_pexels_10042939.mp4",
|
| 1490 |
+
"exported_frames": 282,
|
| 1491 |
+
"fps": 23.976023976023978,
|
| 1492 |
+
"stride": 3,
|
| 1493 |
+
"quality_score": 0.7907,
|
| 1494 |
+
"estimated_source_duration_sec": 27.4,
|
| 1495 |
+
"avg_sequence_length": 282,
|
| 1496 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1497 |
+
},
|
| 1498 |
+
{
|
| 1499 |
+
"original_filename": "running_pexels_12510392.mp4",
|
| 1500 |
+
"exported_frames": 780,
|
| 1501 |
+
"fps": 29.97002997002997,
|
| 1502 |
+
"stride": 3,
|
| 1503 |
+
"quality_score": 0.8216,
|
| 1504 |
+
"estimated_source_duration_sec": 28.83,
|
| 1505 |
+
"avg_sequence_length": 780,
|
| 1506 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1507 |
+
},
|
| 1508 |
+
{
|
| 1509 |
+
"original_filename": "running_pexels_12510402.mp4",
|
| 1510 |
+
"exported_frames": 468,
|
| 1511 |
+
"fps": 29.97002997002997,
|
| 1512 |
+
"stride": 3,
|
| 1513 |
+
"quality_score": 0.8161,
|
| 1514 |
+
"estimated_source_duration_sec": 22.32,
|
| 1515 |
+
"avg_sequence_length": 468,
|
| 1516 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1517 |
+
},
|
| 1518 |
+
{
|
| 1519 |
+
"original_filename": "running_pexels_13413819.mp4",
|
| 1520 |
+
"exported_frames": 348,
|
| 1521 |
+
"fps": 29.97002997002997,
|
| 1522 |
+
"stride": 3,
|
| 1523 |
+
"quality_score": 0.906,
|
| 1524 |
+
"estimated_source_duration_sec": 12.65,
|
| 1525 |
+
"avg_sequence_length": 348,
|
| 1526 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1527 |
+
},
|
| 1528 |
+
{
|
| 1529 |
+
"original_filename": "running_pexels_25752547.mp4",
|
| 1530 |
+
"exported_frames": 309,
|
| 1531 |
+
"fps": 60.0,
|
| 1532 |
+
"stride": 3,
|
| 1533 |
+
"quality_score": 0.9014,
|
| 1534 |
+
"estimated_source_duration_sec": 5.12,
|
| 1535 |
+
"avg_sequence_length": 309,
|
| 1536 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1537 |
+
},
|
| 1538 |
+
{
|
| 1539 |
+
"original_filename": "running_pexels_27861371.mp4",
|
| 1540 |
+
"exported_frames": 33,
|
| 1541 |
+
"fps": 30.0,
|
| 1542 |
+
"stride": 3,
|
| 1543 |
+
"quality_score": 0.7797,
|
| 1544 |
+
"estimated_source_duration_sec": 15.0,
|
| 1545 |
+
"avg_sequence_length": 33,
|
| 1546 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1547 |
+
},
|
| 1548 |
+
{
|
| 1549 |
+
"original_filename": "running_pexels_28436810.mp4",
|
| 1550 |
+
"exported_frames": 132,
|
| 1551 |
+
"fps": 25.0,
|
| 1552 |
+
"stride": 3,
|
| 1553 |
+
"quality_score": 0.7531,
|
| 1554 |
+
"estimated_source_duration_sec": 13.4,
|
| 1555 |
+
"avg_sequence_length": 132,
|
| 1556 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1557 |
+
},
|
| 1558 |
+
{
|
| 1559 |
+
"original_filename": "running_pexels_29639948.mp4",
|
| 1560 |
+
"exported_frames": 129,
|
| 1561 |
+
"fps": 60.0,
|
| 1562 |
+
"stride": 3,
|
| 1563 |
+
"quality_score": 0.8728,
|
| 1564 |
+
"estimated_source_duration_sec": 6.77,
|
| 1565 |
+
"avg_sequence_length": 129,
|
| 1566 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1567 |
+
},
|
| 1568 |
+
{
|
| 1569 |
+
"original_filename": "running_pexels_29915890.mp4",
|
| 1570 |
+
"exported_frames": 225,
|
| 1571 |
+
"fps": 25.0,
|
| 1572 |
+
"stride": 3,
|
| 1573 |
+
"quality_score": 0.8691,
|
| 1574 |
+
"estimated_source_duration_sec": 8.96,
|
| 1575 |
+
"avg_sequence_length": 225,
|
| 1576 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1577 |
+
},
|
| 1578 |
+
{
|
| 1579 |
+
"original_filename": "running_pexels_30694240.mp4",
|
| 1580 |
+
"exported_frames": 1122,
|
| 1581 |
+
"fps": 30.0,
|
| 1582 |
+
"stride": 3,
|
| 1583 |
+
"quality_score": 0.8626,
|
| 1584 |
+
"estimated_source_duration_sec": 37.4,
|
| 1585 |
+
"avg_sequence_length": 1122,
|
| 1586 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1587 |
+
},
|
| 1588 |
+
{
|
| 1589 |
+
"original_filename": "running_pexels_31270039.mp4",
|
| 1590 |
+
"exported_frames": 1020,
|
| 1591 |
+
"fps": 60.0,
|
| 1592 |
+
"stride": 3,
|
| 1593 |
+
"quality_score": 0.8743,
|
| 1594 |
+
"estimated_source_duration_sec": 29.92,
|
| 1595 |
+
"avg_sequence_length": 1020,
|
| 1596 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1597 |
+
},
|
| 1598 |
+
{
|
| 1599 |
+
"original_filename": "running_pexels_31328832.mp4",
|
| 1600 |
+
"exported_frames": 627,
|
| 1601 |
+
"fps": 30.0,
|
| 1602 |
+
"stride": 3,
|
| 1603 |
+
"quality_score": 0.9229,
|
| 1604 |
+
"estimated_source_duration_sec": 26.97,
|
| 1605 |
+
"avg_sequence_length": 627,
|
| 1606 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1607 |
+
},
|
| 1608 |
+
{
|
| 1609 |
+
"original_filename": "running_pexels_31328833.mp4",
|
| 1610 |
+
"exported_frames": 495,
|
| 1611 |
+
"fps": 29.97002997002997,
|
| 1612 |
+
"stride": 3,
|
| 1613 |
+
"quality_score": 0.8632,
|
| 1614 |
+
"estimated_source_duration_sec": 16.58,
|
| 1615 |
+
"avg_sequence_length": 495,
|
| 1616 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1617 |
+
},
|
| 1618 |
+
{
|
| 1619 |
+
"original_filename": "running_pexels_31990568.mp4",
|
| 1620 |
+
"exported_frames": 783,
|
| 1621 |
+
"fps": 59.94005994005994,
|
| 1622 |
+
"stride": 3,
|
| 1623 |
+
"quality_score": 0.8599,
|
| 1624 |
+
"estimated_source_duration_sec": 22.56,
|
| 1625 |
+
"avg_sequence_length": 783,
|
| 1626 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1627 |
+
},
|
| 1628 |
+
{
|
| 1629 |
+
"original_filename": "running_pexels_32240945.mp4",
|
| 1630 |
+
"exported_frames": 447,
|
| 1631 |
+
"fps": 50.0,
|
| 1632 |
+
"stride": 3,
|
| 1633 |
+
"quality_score": 0.9185,
|
| 1634 |
+
"estimated_source_duration_sec": 15.22,
|
| 1635 |
+
"avg_sequence_length": 447,
|
| 1636 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1637 |
+
},
|
| 1638 |
+
{
|
| 1639 |
+
"original_filename": "running_pexels_32305070.mp4",
|
| 1640 |
+
"exported_frames": 507,
|
| 1641 |
+
"fps": 23.976023976023978,
|
| 1642 |
+
"stride": 3,
|
| 1643 |
+
"quality_score": 0.8586,
|
| 1644 |
+
"estimated_source_duration_sec": 32.53,
|
| 1645 |
+
"avg_sequence_length": 507,
|
| 1646 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1647 |
+
},
|
| 1648 |
+
{
|
| 1649 |
+
"original_filename": "running_pexels_32620157.mp4",
|
| 1650 |
+
"exported_frames": 513,
|
| 1651 |
+
"fps": 23.976023976023978,
|
| 1652 |
+
"stride": 3,
|
| 1653 |
+
"quality_score": 0.9043,
|
| 1654 |
+
"estimated_source_duration_sec": 31.36,
|
| 1655 |
+
"avg_sequence_length": 513,
|
| 1656 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1657 |
+
},
|
| 1658 |
+
{
|
| 1659 |
+
"original_filename": "running_pexels_32620158.mp4",
|
| 1660 |
+
"exported_frames": 291,
|
| 1661 |
+
"fps": 23.976023976023978,
|
| 1662 |
+
"stride": 3,
|
| 1663 |
+
"quality_score": 0.7996,
|
| 1664 |
+
"estimated_source_duration_sec": 31.32,
|
| 1665 |
+
"avg_sequence_length": 291,
|
| 1666 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1667 |
+
},
|
| 1668 |
+
{
|
| 1669 |
+
"original_filename": "running_pexels_32740425.mp4",
|
| 1670 |
+
"exported_frames": 723,
|
| 1671 |
+
"fps": 30.0,
|
| 1672 |
+
"stride": 3,
|
| 1673 |
+
"quality_score": 0.8873,
|
| 1674 |
+
"estimated_source_duration_sec": 25.63,
|
| 1675 |
+
"avg_sequence_length": 723,
|
| 1676 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1677 |
+
},
|
| 1678 |
+
{
|
| 1679 |
+
"original_filename": "running_pexels_34766451.mp4",
|
| 1680 |
+
"exported_frames": 48,
|
| 1681 |
+
"fps": 50.0,
|
| 1682 |
+
"stride": 3,
|
| 1683 |
+
"quality_score": 0.6629,
|
| 1684 |
+
"estimated_source_duration_sec": 10.88,
|
| 1685 |
+
"avg_sequence_length": 48,
|
| 1686 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1687 |
+
},
|
| 1688 |
+
{
|
| 1689 |
+
"original_filename": "running_pexels_35608293.mp4",
|
| 1690 |
+
"exported_frames": 42,
|
| 1691 |
+
"fps": 29.97002997002997,
|
| 1692 |
+
"stride": 3,
|
| 1693 |
+
"quality_score": 0.8035,
|
| 1694 |
+
"estimated_source_duration_sec": 7.14,
|
| 1695 |
+
"avg_sequence_length": 42,
|
| 1696 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1697 |
+
},
|
| 1698 |
+
{
|
| 1699 |
+
"original_filename": "running_pexels_36109137.mp4",
|
| 1700 |
+
"exported_frames": 288,
|
| 1701 |
+
"fps": 23.976023976023978,
|
| 1702 |
+
"stride": 3,
|
| 1703 |
+
"quality_score": 0.9473,
|
| 1704 |
+
"estimated_source_duration_sec": 12.01,
|
| 1705 |
+
"avg_sequence_length": 288,
|
| 1706 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1707 |
+
},
|
| 1708 |
+
{
|
| 1709 |
+
"original_filename": "running_pexels_36505987.mp4",
|
| 1710 |
+
"exported_frames": 303,
|
| 1711 |
+
"fps": 59.94005994005994,
|
| 1712 |
+
"stride": 3,
|
| 1713 |
+
"quality_score": 0.8989,
|
| 1714 |
+
"estimated_source_duration_sec": 5.17,
|
| 1715 |
+
"avg_sequence_length": 303,
|
| 1716 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1717 |
+
},
|
| 1718 |
+
{
|
| 1719 |
+
"original_filename": "running_pexels_36578163.mp4",
|
| 1720 |
+
"exported_frames": 303,
|
| 1721 |
+
"fps": 59.94005994005994,
|
| 1722 |
+
"stride": 3,
|
| 1723 |
+
"quality_score": 0.8665,
|
| 1724 |
+
"estimated_source_duration_sec": 5.07,
|
| 1725 |
+
"avg_sequence_length": 303,
|
| 1726 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1727 |
+
},
|
| 1728 |
+
{
|
| 1729 |
+
"original_filename": "walking_pexels_853830.mp4",
|
| 1730 |
+
"exported_frames": 96,
|
| 1731 |
+
"fps": 25.0,
|
| 1732 |
+
"stride": 3,
|
| 1733 |
+
"quality_score": 0.6574,
|
| 1734 |
+
"estimated_source_duration_sec": 19.88,
|
| 1735 |
+
"avg_sequence_length": 96,
|
| 1736 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1737 |
+
},
|
| 1738 |
+
{
|
| 1739 |
+
"original_filename": "walking_pexels_3695937.mp4",
|
| 1740 |
+
"exported_frames": 0,
|
| 1741 |
+
"fps": 24.0,
|
| 1742 |
+
"stride": 3,
|
| 1743 |
+
"quality_score": 0.0,
|
| 1744 |
+
"estimated_source_duration_sec": 20.75,
|
| 1745 |
+
"avg_sequence_length": 0,
|
| 1746 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1747 |
+
},
|
| 1748 |
+
{
|
| 1749 |
+
"original_filename": "walking_pexels_3987772.mp4",
|
| 1750 |
+
"exported_frames": 0,
|
| 1751 |
+
"fps": 24.0,
|
| 1752 |
+
"stride": 3,
|
| 1753 |
+
"quality_score": 0.0,
|
| 1754 |
+
"estimated_source_duration_sec": 7.0,
|
| 1755 |
+
"avg_sequence_length": 0,
|
| 1756 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1757 |
+
},
|
| 1758 |
+
{
|
| 1759 |
+
"original_filename": "walking_pexels_3987787.mp4",
|
| 1760 |
+
"exported_frames": 0,
|
| 1761 |
+
"fps": 24.0,
|
| 1762 |
+
"stride": 3,
|
| 1763 |
+
"quality_score": 0.0,
|
| 1764 |
+
"estimated_source_duration_sec": 7.0,
|
| 1765 |
+
"avg_sequence_length": 0,
|
| 1766 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1767 |
+
},
|
| 1768 |
+
{
|
| 1769 |
+
"original_filename": "walking_pexels_3998656.mp4",
|
| 1770 |
+
"exported_frames": 123,
|
| 1771 |
+
"fps": 24.0,
|
| 1772 |
+
"stride": 3,
|
| 1773 |
+
"quality_score": 0.7308,
|
| 1774 |
+
"estimated_source_duration_sec": 17.96,
|
| 1775 |
+
"avg_sequence_length": 123,
|
| 1776 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1777 |
+
},
|
| 1778 |
+
{
|
| 1779 |
+
"original_filename": "walking_pexels_4065477.mp4",
|
| 1780 |
+
"exported_frames": 66,
|
| 1781 |
+
"fps": 29.97002997002997,
|
| 1782 |
+
"stride": 3,
|
| 1783 |
+
"quality_score": 0.7944,
|
| 1784 |
+
"estimated_source_duration_sec": 8.48,
|
| 1785 |
+
"avg_sequence_length": 66,
|
| 1786 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1787 |
+
},
|
| 1788 |
+
{
|
| 1789 |
+
"original_filename": "walking_pexels_4806687.mp4",
|
| 1790 |
+
"exported_frames": 264,
|
| 1791 |
+
"fps": 30.0,
|
| 1792 |
+
"stride": 3,
|
| 1793 |
+
"quality_score": 0.8382,
|
| 1794 |
+
"estimated_source_duration_sec": 22.27,
|
| 1795 |
+
"avg_sequence_length": 264,
|
| 1796 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1797 |
+
},
|
| 1798 |
+
{
|
| 1799 |
+
"original_filename": "walking_pexels_4830311.mp4",
|
| 1800 |
+
"exported_frames": 6,
|
| 1801 |
+
"fps": 29.97002997002997,
|
| 1802 |
+
"stride": 3,
|
| 1803 |
+
"quality_score": 0.6753,
|
| 1804 |
+
"estimated_source_duration_sec": 10.04,
|
| 1805 |
+
"avg_sequence_length": 6,
|
| 1806 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1807 |
+
},
|
| 1808 |
+
{
|
| 1809 |
+
"original_filename": "walking_pexels_5099058.mp4",
|
| 1810 |
+
"exported_frames": 0,
|
| 1811 |
+
"fps": 24.0,
|
| 1812 |
+
"stride": 3,
|
| 1813 |
+
"quality_score": 0.0,
|
| 1814 |
+
"estimated_source_duration_sec": 16.0,
|
| 1815 |
+
"avg_sequence_length": 0,
|
| 1816 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1817 |
+
},
|
| 1818 |
+
{
|
| 1819 |
+
"original_filename": "walking_pexels_5543517.mp4",
|
| 1820 |
+
"exported_frames": 39,
|
| 1821 |
+
"fps": 29.97002997002997,
|
| 1822 |
+
"stride": 3,
|
| 1823 |
+
"quality_score": 0.6162,
|
| 1824 |
+
"estimated_source_duration_sec": 10.78,
|
| 1825 |
+
"avg_sequence_length": 39,
|
| 1826 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1827 |
+
},
|
| 1828 |
+
{
|
| 1829 |
+
"original_filename": "walking_pexels_6548034.mp4",
|
| 1830 |
+
"exported_frames": 234,
|
| 1831 |
+
"fps": 23.976023976023978,
|
| 1832 |
+
"stride": 3,
|
| 1833 |
+
"quality_score": 0.9086,
|
| 1834 |
+
"estimated_source_duration_sec": 10.01,
|
| 1835 |
+
"avg_sequence_length": 234,
|
| 1836 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1837 |
+
},
|
| 1838 |
+
{
|
| 1839 |
+
"original_filename": "walking_pexels_8144390.mp4",
|
| 1840 |
+
"exported_frames": 144,
|
| 1841 |
+
"fps": 30.0,
|
| 1842 |
+
"stride": 3,
|
| 1843 |
+
"quality_score": 0.8234,
|
| 1844 |
+
"estimated_source_duration_sec": 13.17,
|
| 1845 |
+
"avg_sequence_length": 144,
|
| 1846 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1847 |
+
},
|
| 1848 |
+
{
|
| 1849 |
+
"original_filename": "walking_pexels_8484791.mp4",
|
| 1850 |
+
"exported_frames": 312,
|
| 1851 |
+
"fps": 29.97002997002997,
|
| 1852 |
+
"stride": 3,
|
| 1853 |
+
"quality_score": 0.883,
|
| 1854 |
+
"estimated_source_duration_sec": 10.51,
|
| 1855 |
+
"avg_sequence_length": 312,
|
| 1856 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1857 |
+
},
|
| 1858 |
+
{
|
| 1859 |
+
"original_filename": "walking_pexels_26965014.mp4",
|
| 1860 |
+
"exported_frames": 180,
|
| 1861 |
+
"fps": 25.0,
|
| 1862 |
+
"stride": 3,
|
| 1863 |
+
"quality_score": 0.8431,
|
| 1864 |
+
"estimated_source_duration_sec": 9.2,
|
| 1865 |
+
"avg_sequence_length": 180,
|
| 1866 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1867 |
+
},
|
| 1868 |
+
{
|
| 1869 |
+
"original_filename": "walking_pexels_29917998.mp4",
|
| 1870 |
+
"exported_frames": 372,
|
| 1871 |
+
"fps": 30.0,
|
| 1872 |
+
"stride": 3,
|
| 1873 |
+
"quality_score": 0.8701,
|
| 1874 |
+
"estimated_source_duration_sec": 12.33,
|
| 1875 |
+
"avg_sequence_length": 372,
|
| 1876 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1877 |
+
},
|
| 1878 |
+
{
|
| 1879 |
+
"original_filename": "walking_pexels_30893147.mp4",
|
| 1880 |
+
"exported_frames": 198,
|
| 1881 |
+
"fps": 25.0,
|
| 1882 |
+
"stride": 3,
|
| 1883 |
+
"quality_score": 0.8834,
|
| 1884 |
+
"estimated_source_duration_sec": 10.52,
|
| 1885 |
+
"avg_sequence_length": 198,
|
| 1886 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1887 |
+
},
|
| 1888 |
+
{
|
| 1889 |
+
"original_filename": "walking_pexels_32496529.mp4",
|
| 1890 |
+
"exported_frames": 48,
|
| 1891 |
+
"fps": 59.94005994005994,
|
| 1892 |
+
"stride": 3,
|
| 1893 |
+
"quality_score": 0.5986,
|
| 1894 |
+
"estimated_source_duration_sec": 18.22,
|
| 1895 |
+
"avg_sequence_length": 48,
|
| 1896 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1897 |
+
},
|
| 1898 |
+
{
|
| 1899 |
+
"original_filename": "walking_pexels_34716669.mp4",
|
| 1900 |
+
"exported_frames": 702,
|
| 1901 |
+
"fps": 59.94005994005994,
|
| 1902 |
+
"stride": 3,
|
| 1903 |
+
"quality_score": 0.8938,
|
| 1904 |
+
"estimated_source_duration_sec": 11.68,
|
| 1905 |
+
"avg_sequence_length": 702,
|
| 1906 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1907 |
+
},
|
| 1908 |
+
{
|
| 1909 |
+
"original_filename": "walking_pexels_36366804.mp4",
|
| 1910 |
+
"exported_frames": 384,
|
| 1911 |
+
"fps": 25.0,
|
| 1912 |
+
"stride": 3,
|
| 1913 |
+
"quality_score": 0.8605,
|
| 1914 |
+
"estimated_source_duration_sec": 15.4,
|
| 1915 |
+
"avg_sequence_length": 384,
|
| 1916 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)"
|
| 1917 |
+
}
|
| 1918 |
+
],
|
| 1919 |
+
"artifacts": {
|
| 1920 |
+
"per_frame_records": "dataset/data.jsonl",
|
| 1921 |
+
"per_video_frames_glob": "dataset/per_video/video_*.jsonl",
|
| 1922 |
+
"per_video_rejected_glob": "dataset/per_video/rejected_*.jsonl",
|
| 1923 |
+
"combined_layout": "dataset/bulk_combined_manifest.json",
|
| 1924 |
+
"sequence_features": "dataset/features.json",
|
| 1925 |
+
"job_manifest": "dataset/manifest.json",
|
| 1926 |
+
"run_diagnostics": "dataset/run_diagnostics.json",
|
| 1927 |
+
"runtime_config": "dataset/runtime_config.json"
|
| 1928 |
+
},
|
| 1929 |
+
"quality_filter": {
|
| 1930 |
+
"enabled": true,
|
| 1931 |
+
"thresholds": {
|
| 1932 |
+
"min_frame_quality_score": 0.38,
|
| 1933 |
+
"min_avg_landmark_visibility": 0.55,
|
| 1934 |
+
"min_lower_body_visibility": 0.4,
|
| 1935 |
+
"min_motion_local": null
|
| 1936 |
+
},
|
| 1937 |
+
"frames_total": 26755,
|
| 1938 |
+
"frames_accepted_pre_augmentation": 14897,
|
| 1939 |
+
"frames_exported_including_augmentations": 44691,
|
| 1940 |
+
"frames_rejected": 11858,
|
| 1941 |
+
"accepted_percentage": 55.68,
|
| 1942 |
+
"acceptance_rate_note": "accepted_percentage = frames_accepted_pre_augmentation / frames_total (sampled). frames_exported_including_augmentations includes augmentation duplicates.",
|
| 1943 |
+
"quality_score_formula": "Per frame: frame_quality_score = 0.5 * avg_landmark_visibility + 0.0 * lower_body_visibility + 0.5 * motion_local.",
|
| 1944 |
+
"mean_metrics_accepted_frames": {
|
| 1945 |
+
"mean_frame_quality_score": 0.8571,
|
| 1946 |
+
"mean_avg_landmark_visibility": 0.8061,
|
| 1947 |
+
"mean_lower_body_visibility": 0.7779,
|
| 1948 |
+
"mean_motion_local": 0.908
|
| 1949 |
+
},
|
| 1950 |
+
"quality_score_mean_filtered": 0.8571,
|
| 1951 |
+
"mean_avg_landmark_visibility_filtered": 0.8061,
|
| 1952 |
+
"sequence_quality_score_formula": "Sequence quality_score uses motion_consistency from hip displacement series.",
|
| 1953 |
+
"per_frame_quality_formula": "Per frame: frame_quality_score = 0.5 * avg_landmark_visibility + 0.0 * lower_body_visibility + 0.5 * motion_local."
|
| 1954 |
+
},
|
| 1955 |
+
"keypoint_post_processing": {
|
| 1956 |
+
"gaussian_smoothing": {
|
| 1957 |
+
"enabled": true,
|
| 1958 |
+
"window": 5,
|
| 1959 |
+
"axes": [
|
| 1960 |
+
"x",
|
| 1961 |
+
"y",
|
| 1962 |
+
"z"
|
| 1963 |
+
],
|
| 1964 |
+
"visibility_smoothed": false,
|
| 1965 |
+
"config": "hq.gaussian_smooth / hq.temporal_smoothing, gaussian_window, or MDE_GAUSSIAN_SMOOTH"
|
| 1966 |
+
},
|
| 1967 |
+
"body_normalization": {
|
| 1968 |
+
"method": "hip_center_torso_scale"
|
| 1969 |
+
}
|
| 1970 |
+
},
|
| 1971 |
+
"runtime_config": "dataset/runtime_config.json"
|
| 1972 |
+
}
|
metadata/manifest.json
ADDED
|
@@ -0,0 +1,230 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"schema_version": "1.0.0",
|
| 3 |
+
"job_id": "bulk_190_videos_4e1065b2",
|
| 4 |
+
"video_filename": "bulk_190_videos",
|
| 5 |
+
"fps": 27.717514064882486,
|
| 6 |
+
"frame_count_exported": 44691,
|
| 7 |
+
"stride": 3,
|
| 8 |
+
"action_label": "Full Locomotion Bundle (Walking + Jogging + Running)",
|
| 9 |
+
"keypoint_post_processing": {
|
| 10 |
+
"gaussian_smoothing": {
|
| 11 |
+
"enabled": true,
|
| 12 |
+
"window": 5,
|
| 13 |
+
"axes": [
|
| 14 |
+
"x",
|
| 15 |
+
"y",
|
| 16 |
+
"z"
|
| 17 |
+
],
|
| 18 |
+
"visibility_smoothed": false,
|
| 19 |
+
"config": "hq.gaussian_smooth / hq.temporal_smoothing, gaussian_window, or MDE_GAUSSIAN_SMOOTH"
|
| 20 |
+
},
|
| 21 |
+
"body_normalization": {
|
| 22 |
+
"method": "hip_center_torso_scale"
|
| 23 |
+
}
|
| 24 |
+
},
|
| 25 |
+
"augmentations_applied": [
|
| 26 |
+
"horizontal_flip",
|
| 27 |
+
"keypoint_noise"
|
| 28 |
+
],
|
| 29 |
+
"runtime_config": "runtime_config.json",
|
| 30 |
+
"license": "proprietary_or_user_provided",
|
| 31 |
+
"consent": true,
|
| 32 |
+
"notes": "Generated by Quality Vision Motion Dataset Engine (layer11_pose, MediaPipe bulk). Combined HQ frames: dataset/data.jsonl; per-source split: dataset/per_video/video_*.jsonl; index: dataset/bulk_combined_manifest.json; global_stats.json aggregates per-video metrics plus totals.",
|
| 33 |
+
"dataset_format": "pose_estimation_sequence_dataset",
|
| 34 |
+
"export_manifest_version": "1.1",
|
| 35 |
+
"bulk_export": true,
|
| 36 |
+
"source_video_filenames": [
|
| 37 |
+
"jogging_pexels_3048928.mp4",
|
| 38 |
+
"jogging_pexels_3192168.mp4",
|
| 39 |
+
"jogging_pexels_4065467.mp4",
|
| 40 |
+
"jogging_pexels_4859223.mp4",
|
| 41 |
+
"jogging_pexels_4859225.mp4",
|
| 42 |
+
"jogging_pexels_4859229.mp4",
|
| 43 |
+
"jogging_pexels_4859234.mp4",
|
| 44 |
+
"jogging_pexels_4859454.mp4",
|
| 45 |
+
"jogging_pexels_4927592.mp4",
|
| 46 |
+
"jogging_pexels_4929150.mp4",
|
| 47 |
+
"jogging_pexels_4994624.mp4",
|
| 48 |
+
"jogging_pexels_5029483.mp4",
|
| 49 |
+
"jogging_pexels_5033913.mp4",
|
| 50 |
+
"jogging_pexels_5034319.mp4",
|
| 51 |
+
"jogging_pexels_5034325.mp4",
|
| 52 |
+
"jogging_pexels_5034564.mp4",
|
| 53 |
+
"jogging_pexels_5034569.mp4",
|
| 54 |
+
"jogging_pexels_5034574.mp4",
|
| 55 |
+
"jogging_pexels_5319341.mp4",
|
| 56 |
+
"jogging_pexels_5319345.mp4",
|
| 57 |
+
"jogging_pexels_5319347.mp4",
|
| 58 |
+
"jogging_pexels_5319351.mp4",
|
| 59 |
+
"jogging_pexels_5319352.mp4",
|
| 60 |
+
"jogging_pexels_5319440.mp4",
|
| 61 |
+
"jogging_pexels_5319443.mp4",
|
| 62 |
+
"jogging_pexels_5319445.mp4",
|
| 63 |
+
"jogging_pexels_5319447.mp4",
|
| 64 |
+
"jogging_pexels_5319457.mp4",
|
| 65 |
+
"jogging_pexels_5319531.mp4",
|
| 66 |
+
"jogging_pexels_5677457.mp4",
|
| 67 |
+
"jogging_pexels_6454248.mp4",
|
| 68 |
+
"jogging_pexels_6548022.mp4",
|
| 69 |
+
"jogging_pexels_7263170.mp4",
|
| 70 |
+
"jogging_pexels_7866023.mp4",
|
| 71 |
+
"jogging_pexels_7884055.mp4",
|
| 72 |
+
"jogging_pexels_8343998.mp4",
|
| 73 |
+
"jogging_pexels_8343999.mp4",
|
| 74 |
+
"jogging_pexels_8344007.mp4",
|
| 75 |
+
"jogging_pexels_8344009.mp4",
|
| 76 |
+
"jogging_pexels_8380512.mp4",
|
| 77 |
+
"jogging_pexels_8380513.mp4",
|
| 78 |
+
"jogging_pexels_8380521.mp4",
|
| 79 |
+
"jogging_pexels_8380719.mp4",
|
| 80 |
+
"jogging_pexels_8380730.mp4",
|
| 81 |
+
"jogging_pexels_8380731.mp4",
|
| 82 |
+
"jogging_pexels_8402121.mp4",
|
| 83 |
+
"jogging_pexels_8484736.mp4",
|
| 84 |
+
"jogging_pexels_8484866.mp4",
|
| 85 |
+
"jogging_pexels_8637052.mp4",
|
| 86 |
+
"jogging_pexels_8637185.mp4",
|
| 87 |
+
"jogging_pexels_8637697.mp4",
|
| 88 |
+
"jogging_pexels_8691046.mp4",
|
| 89 |
+
"jogging_pexels_8795407.mp4",
|
| 90 |
+
"jogging_pexels_8795486.mp4",
|
| 91 |
+
"jogging_pexels_19538623.mp4",
|
| 92 |
+
"jogging_pexels_27451763.mp4",
|
| 93 |
+
"jogging_pexels_32305070.mp4",
|
| 94 |
+
"jogging_pexels_32620156.mp4",
|
| 95 |
+
"jogging_pexels_32620157.mp4",
|
| 96 |
+
"jogging_pexels_35608293.mp4",
|
| 97 |
+
"jogging_pexels_36019497.mp4",
|
| 98 |
+
"running_pexels_2370709.mp4",
|
| 99 |
+
"running_pexels_2910036.mp4",
|
| 100 |
+
"running_pexels_3048199.mp4",
|
| 101 |
+
"running_pexels_3048879.mp4",
|
| 102 |
+
"running_pexels_3048928.mp4",
|
| 103 |
+
"running_pexels_3048931.mp4",
|
| 104 |
+
"running_pexels_3048933.mp4",
|
| 105 |
+
"running_pexels_3048934.mp4",
|
| 106 |
+
"running_pexels_3209011.mp4",
|
| 107 |
+
"running_pexels_3209242.mp4",
|
| 108 |
+
"running_pexels_3209549.mp4",
|
| 109 |
+
"running_pexels_4065481.mp4",
|
| 110 |
+
"running_pexels_4065567.mp4",
|
| 111 |
+
"running_pexels_4143804.mp4",
|
| 112 |
+
"running_pexels_4151805.mp4",
|
| 113 |
+
"running_pexels_4742528.mp4",
|
| 114 |
+
"running_pexels_4804795.mp4",
|
| 115 |
+
"running_pexels_4859219.mp4",
|
| 116 |
+
"running_pexels_4859234.mp4",
|
| 117 |
+
"running_pexels_4945121.mp4",
|
| 118 |
+
"running_pexels_4994624.mp4",
|
| 119 |
+
"running_pexels_5033913.mp4",
|
| 120 |
+
"running_pexels_5034569.mp4",
|
| 121 |
+
"running_pexels_5034574.mp4",
|
| 122 |
+
"running_pexels_5310854.mp4",
|
| 123 |
+
"running_pexels_5310959.mp4",
|
| 124 |
+
"running_pexels_5310971.mp4",
|
| 125 |
+
"running_pexels_5319341.mp4",
|
| 126 |
+
"running_pexels_5319351.mp4",
|
| 127 |
+
"running_pexels_5319440.mp4",
|
| 128 |
+
"running_pexels_5319443.mp4",
|
| 129 |
+
"running_pexels_5319445.mp4",
|
| 130 |
+
"running_pexels_5319449.mp4",
|
| 131 |
+
"running_pexels_5319452.mp4",
|
| 132 |
+
"running_pexels_5319457.mp4",
|
| 133 |
+
"running_pexels_5319999.mp4",
|
| 134 |
+
"running_pexels_5389502.mp4",
|
| 135 |
+
"running_pexels_5674267.mp4",
|
| 136 |
+
"running_pexels_5677393.mp4",
|
| 137 |
+
"running_pexels_5677396.mp4",
|
| 138 |
+
"running_pexels_5677449.mp4",
|
| 139 |
+
"running_pexels_5677457.mp4",
|
| 140 |
+
"running_pexels_5929358.mp4",
|
| 141 |
+
"running_pexels_6573735.mp4",
|
| 142 |
+
"running_pexels_7179290.mp4",
|
| 143 |
+
"running_pexels_7187086.mp4",
|
| 144 |
+
"running_pexels_7187092.mp4",
|
| 145 |
+
"running_pexels_7884001.mp4",
|
| 146 |
+
"running_pexels_8335615.mp4",
|
| 147 |
+
"running_pexels_8344006.mp4",
|
| 148 |
+
"running_pexels_8344807.mp4",
|
| 149 |
+
"running_pexels_8344814.mp4",
|
| 150 |
+
"running_pexels_8344815.mp4",
|
| 151 |
+
"running_pexels_8380512.mp4",
|
| 152 |
+
"running_pexels_8380513.mp4",
|
| 153 |
+
"running_pexels_8380514.mp4",
|
| 154 |
+
"running_pexels_8380716.mp4",
|
| 155 |
+
"running_pexels_8380719.mp4",
|
| 156 |
+
"running_pexels_8380729.mp4",
|
| 157 |
+
"running_pexels_8380730.mp4",
|
| 158 |
+
"running_pexels_8380731.mp4",
|
| 159 |
+
"running_pexels_8401280.mp4",
|
| 160 |
+
"running_pexels_8401329.mp4",
|
| 161 |
+
"running_pexels_8401339.mp4",
|
| 162 |
+
"running_pexels_8401340.mp4",
|
| 163 |
+
"running_pexels_8401385.mp4",
|
| 164 |
+
"running_pexels_8402092.mp4",
|
| 165 |
+
"running_pexels_8456640.mp4",
|
| 166 |
+
"running_pexels_8456642.mp4",
|
| 167 |
+
"running_pexels_8456662.mp4",
|
| 168 |
+
"running_pexels_8459967.mp4",
|
| 169 |
+
"running_pexels_8484750.mp4",
|
| 170 |
+
"running_pexels_8520595.mp4",
|
| 171 |
+
"running_pexels_8533445.mp4",
|
| 172 |
+
"running_pexels_8533453.mp4",
|
| 173 |
+
"running_pexels_8533455.mp4",
|
| 174 |
+
"running_pexels_8533485.mp4",
|
| 175 |
+
"running_pexels_8533906.mp4",
|
| 176 |
+
"running_pexels_8533913.mp4",
|
| 177 |
+
"running_pexels_8544793.mp4",
|
| 178 |
+
"running_pexels_8636806.mp4",
|
| 179 |
+
"running_pexels_8637040.mp4",
|
| 180 |
+
"running_pexels_8644210.mp4",
|
| 181 |
+
"running_pexels_8691808.mp4",
|
| 182 |
+
"running_pexels_8795407.mp4",
|
| 183 |
+
"running_pexels_9835653.mp4",
|
| 184 |
+
"running_pexels_10042939.mp4",
|
| 185 |
+
"running_pexels_12510392.mp4",
|
| 186 |
+
"running_pexels_12510402.mp4",
|
| 187 |
+
"running_pexels_13413819.mp4",
|
| 188 |
+
"running_pexels_25752547.mp4",
|
| 189 |
+
"running_pexels_27861371.mp4",
|
| 190 |
+
"running_pexels_28436810.mp4",
|
| 191 |
+
"running_pexels_29639948.mp4",
|
| 192 |
+
"running_pexels_29915890.mp4",
|
| 193 |
+
"running_pexels_30694240.mp4",
|
| 194 |
+
"running_pexels_31270039.mp4",
|
| 195 |
+
"running_pexels_31328832.mp4",
|
| 196 |
+
"running_pexels_31328833.mp4",
|
| 197 |
+
"running_pexels_31990568.mp4",
|
| 198 |
+
"running_pexels_32240945.mp4",
|
| 199 |
+
"running_pexels_32305070.mp4",
|
| 200 |
+
"running_pexels_32620157.mp4",
|
| 201 |
+
"running_pexels_32620158.mp4",
|
| 202 |
+
"running_pexels_32740425.mp4",
|
| 203 |
+
"running_pexels_34766451.mp4",
|
| 204 |
+
"running_pexels_35608293.mp4",
|
| 205 |
+
"running_pexels_36109137.mp4",
|
| 206 |
+
"running_pexels_36505987.mp4",
|
| 207 |
+
"running_pexels_36578163.mp4",
|
| 208 |
+
"walking_pexels_853830.mp4",
|
| 209 |
+
"walking_pexels_3695937.mp4",
|
| 210 |
+
"walking_pexels_3987772.mp4",
|
| 211 |
+
"walking_pexels_3987787.mp4",
|
| 212 |
+
"walking_pexels_3998656.mp4",
|
| 213 |
+
"walking_pexels_4065477.mp4",
|
| 214 |
+
"walking_pexels_4806687.mp4",
|
| 215 |
+
"walking_pexels_4830311.mp4",
|
| 216 |
+
"walking_pexels_5099058.mp4",
|
| 217 |
+
"walking_pexels_5543517.mp4",
|
| 218 |
+
"walking_pexels_6548034.mp4",
|
| 219 |
+
"walking_pexels_8144390.mp4",
|
| 220 |
+
"walking_pexels_8484791.mp4",
|
| 221 |
+
"walking_pexels_26965014.mp4",
|
| 222 |
+
"walking_pexels_29917998.mp4",
|
| 223 |
+
"walking_pexels_30893147.mp4",
|
| 224 |
+
"walking_pexels_32496529.mp4",
|
| 225 |
+
"walking_pexels_34716669.mp4",
|
| 226 |
+
"walking_pexels_36366804.mp4"
|
| 227 |
+
],
|
| 228 |
+
"hq_export": true,
|
| 229 |
+
"high_density_mode": false
|
| 230 |
+
}
|