OpenDriveLab-org commited on
Commit
c986fee
·
verified ·
1 Parent(s): 0b15df4

Remove audio tracks from privacy-processed videos

Browse files
raw_videos/README.md ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # SparseVideoNav Privacy-Processed Videos
2
+
3
+ This directory provides one privacy-processed MP4 for every released BVN and IFN episode.
4
+
5
+ - Most files are EgoBlur-processed versions of the original recordings and retain their original video resolution.
6
+ - When a matching readable original-resolution EgoBlur file is unavailable, the corresponding privacy-processed 256×256 RGB frames are encoded as the episode MP4 fallback.
7
+ - All videos have face and license-plate blurring. No unredacted raw footage is included.
8
+ - All published MP4 files are video-only; audio tracks are intentionally omitted.
9
+ - Revisit episodes are intentionally excluded.
10
+
11
+ ## Layout
12
+
13
+ ```text
14
+ raw_videos/
15
+ ├── README.md
16
+ ├── manifest.json
17
+ ├── bvn/
18
+ │ ├── metadata.jsonl
19
+ │ └── <episode_id>.mp4
20
+ └── ifn/
21
+ ├── metadata.jsonl
22
+ └── <episode_id>.mp4
23
+ ```
24
+
25
+ Each metadata row gives the instruction, video resolution, source type, and (for fallback files) the reason an original-resolution EgoBlur source was unavailable.
raw_videos/bvn/metadata.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
raw_videos/ifn/metadata.jsonl ADDED
The diff for this file is too large to render. See raw diff
 
raw_videos/manifest.json ADDED
@@ -0,0 +1,65 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "format_version": 2,
3
+ "subsets": {
4
+ "bvn": {
5
+ "episodes": 5433,
6
+ "source_types": {
7
+ "egoblur_original_resolution": 3484,
8
+ "frames_fallback_256x256": 1949
9
+ },
10
+ "resolution_distribution": {
11
+ "2688x2016": 3032,
12
+ "2688x1512": 401,
13
+ "256x256": 1949,
14
+ "1920x1080": 50,
15
+ "3840x2160": 1
16
+ },
17
+ "size_bytes": 598808551065,
18
+ "duration_seconds": 196689.806686
19
+ },
20
+ "ifn": {
21
+ "episodes": 6260,
22
+ "source_types": {
23
+ "egoblur_original_resolution": 4237,
24
+ "frames_fallback_256x256": 2023
25
+ },
26
+ "resolution_distribution": {
27
+ "2688x2016": 3657,
28
+ "256x256": 2023,
29
+ "2688x1512": 528,
30
+ "1920x1080": 52
31
+ },
32
+ "size_bytes": 734399386803,
33
+ "duration_seconds": 220018.818235
34
+ }
35
+ },
36
+ "totals": {
37
+ "episodes": 11693,
38
+ "source_types": {
39
+ "egoblur_original_resolution": 7721,
40
+ "frames_fallback_256x256": 3972
41
+ },
42
+ "fallback_reasons": {
43
+ "missing_egoblur_output": 3259,
44
+ "no_original_resolution_source": 712,
45
+ "unreadable_egoblur_output": 1
46
+ },
47
+ "resolution_distribution": {
48
+ "2688x2016": 6689,
49
+ "2688x1512": 929,
50
+ "256x256": 3972,
51
+ "1920x1080": 102,
52
+ "3840x2160": 1
53
+ },
54
+ "size_bytes": 1333207937868,
55
+ "duration_seconds": 416708.624921
56
+ },
57
+ "validation": {
58
+ "unique_episode_ids": true,
59
+ "metadata_video_files_match": true,
60
+ "all_h264": true,
61
+ "all_videos_privacy_processed": true,
62
+ "all_videos_video_only": true,
63
+ "all_container_video_duration_deltas_lte_0_2_seconds": true
64
+ }
65
+ }