Video Inferencing Error

hi Community,
While running video inference, I keep getting ‘status’: 2, ‘status_info’: ‘object-detection error’

loading Roboflow workspace…
loading Roboflow project…
{
“id”: “resort-pool/3”,
“name”: “resort-pool”,
“version”: “3”,
“classes”: null,
“overlap”: 30,
“confidence”: 40,
“stroke”: 1,
“labels”: false,
“format”: “json”,
“base_url”: “https://detect.roboflow.com/
}
Checking for video inference results for job 96e6e582-016f-4504-a3d4-b04a85faef2d every 60s
(0s): Checking for inference results

Below is my code. Does anyone have an idea what I might have done wrong?

PROJECT_NAME = “resort-pool”
VIDEO_FILE = “https://storage.googleapis.com/bucket-trial-run/test-video.mp4

rf = Roboflow(api_key=’my_api_key’)
project = rf.workspace().project(PROJECT_NAME)
model = project.version(“3”).model
job_id, signed_url, expire_time = model.predict_video(
VIDEO_FILE,
fps=5,
prediction_type=“batch-video”
)

results = model.poll_until_video_results(job_id)

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.