Browse Source

ensure duration > 0 for segments

Blake Blackshear 3 years ago
parent
commit
24e2f84231
1 changed files with 6 additions and 2 deletions
  1. 6 2
      frigate/http.py

+ 6 - 2
frigate/http.py

@@ -658,8 +658,12 @@ def vod_ts(camera, start_ts, end_ts):
         # Determine if we need to end the last clip early
         if recording.end_time > end_ts:
             duration -= int((recording.end_time - end_ts) * 1000)
-        clips.append(clip)
-        durations.append(duration)
+
+        if duration > 0:
+            clips.append(clip)
+            durations.append(duration)
+        else:
+            logger.warning(f"Recording clip is missing or empty: {recording.path}")
 
     if not clips:
         return "No recordings found.", 404