contentannotation/video2annotation.py [308:314]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    try:
        s3_client.download_file(bucket_name, video_key, local_path)
        print(f"Downloaded {video_key} to {local_path}")
        return True
    except Exception as e:
        print(f"Failed to download {video_key} from S3: {e}")
        return False
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



finealignment/video_alignment.py [36:42]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    try:
        s3_client.download_file(bucket_name, video_key, local_path)
        print(f"Downloaded {video_key} to {local_path}")
        return True
    except Exception as e:
        print(f"Failed to download {video_key} from S3: {e}")
        return False
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



