File size: 607 Bytes
7bae93a
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
################## ilona command line history ##################
 
conda create -n ego4d-py312 python=3.12.7 -y

conda activate ego4d-py312

python -m pip install --upgrade pip setuptools wheel

pip install ego4d
pip install torch torchvision
pip install av

cd ego4d

# TODO: this part doesn't work at the moment
ego4d \
  --datasets full_scale \
  --video_uid_file video_uids.txt \
  --aws_profile_name ego4d \
  --output_directory ego4d_full_videos/ \
  -y

# loads the metadata
python process_ego4d_videos.py

rm -rf ego4d_full_videos


################################################################