OpenDriveLab-org commited on
Commit
2cc8ddc
·
1 Parent(s): 15ccf35

Add files using upload-large-folder tool

Browse files
videos/README.md ADDED
@@ -0,0 +1,34 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SparseVideoNav Privacy-Processed Videos
2
+
3
+ This directory supplements the existing `bvn/` and `ifn/` frame releases with episode-level MP4 files.
4
+
5
+ - All videos are privacy processed for face and license-plate blurring.
6
+ - All released MP4 files are H.264 at 256×256 resolution.
7
+ - The prepared source collection mixes videos derived from privacy-processed raw recordings with fallback videos reconstructed from processed 256×256 RGB frames.
8
+ - Per-video raw-versus-fallback provenance was not retained by the prepared source collection.
9
+ - Two missing public episodes were reconstructed from their processed RGB frames while aligning this release.
10
+ - Revisit episodes are intentionally excluded.
11
+
12
+ ## Layout
13
+
14
+ ```text
15
+ videos/
16
+ ├── README.md
17
+ ├── manifest.json
18
+ ├── bvn/
19
+ │ ├── metadata.jsonl
20
+ │ └── <episode_id>.mp4
21
+ └── ifn/
22
+ ├── metadata.jsonl
23
+ └── <episode_id>.mp4
24
+ ```
25
+
26
+ Each `episode_id` matches the corresponding record in `bvn/annotations.json` or `ifn/annotations.json`.
27
+
28
+ ## Summary
29
+
30
+ | Subset | Episodes | Duration | Bytes |
31
+ | --- | ---: | ---: | ---: |
32
+ | BVN | 5,433 | 57.35 h | 5,944,679,509 |
33
+ | IFN | 6,260 | 64.40 h | 6,953,487,944 |
34
+ | Total | 11,693 | 121.74 h | 12,898,167,453 |
videos/bvn/metadata.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
videos/manifest.json ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "format_version": 1,
3
+ "source_collection": "/mnt/HDD-raid/siqiteam/sparsevideonav_merged",
4
+ "subsets": {
5
+ "bvn": {
6
+ "episodes": 5433,
7
+ "duration_seconds": 206448.14,
8
+ "size_bytes": 5944679509,
9
+ "duration_hours": 57.346706
10
+ },
11
+ "ifn": {
12
+ "episodes": 6260,
13
+ "duration_seconds": 231827.795,
14
+ "size_bytes": 6953487944,
15
+ "duration_hours": 64.39661
16
+ }
17
+ },
18
+ "totals": {
19
+ "episodes": 11693,
20
+ "duration_seconds": 438275.935,
21
+ "duration_hours": 121.743315,
22
+ "size_bytes": 12898167453
23
+ },
24
+ "release_alignment": {
25
+ "prepared_videos": 11691,
26
+ "frames_fallback_reconstructed": 2,
27
+ "excluded": {
28
+ "revisit": 1592,
29
+ "unmapped_source_file": 2
30
+ }
31
+ },
32
+ "validation": {
33
+ "all_h264": true,
34
+ "all_256x256": true,
35
+ "unique_episode_ids": true,
36
+ "metadata_video_files_match": true
37
+ }
38
+ }