stray_visualize_10.py 291 B

1234567
  1. def validate(flags):
  2. if not os.path.exists(os.path.join(flags.path, 'rgb.mp4')):
  3. absolute_path = os.path.abspath(flags.path)
  4. print(f"The directory {absolute_path} does not appear to be a directory created by the Stray Scanner app.")
  5. return False
  6. return True