videoMMMY.py can download the dataset from Huggingface correctly. But it doesn't unzip them to video subfolder. Accordingly the benchmark will fail.
The root cause is in unzip_hf_zip()
target_dir = base_dir / 'videos'
target_dir.mkdir(exist_ok=True)
if not target_dir.exists():
# unzip logic...
else:
print('The video file already exists.')
The target_dir is always exists since mkdir(exist_ok=True). We should change next line to if target_dir.exists()