Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion rope/VideoManager.py
Original file line number Diff line number Diff line change
Expand Up @@ -392,7 +392,7 @@ def process(self):
# Always be emptying the queues
time_diff = time.time() - self.frame_timer

if not self.record and time_diff >= 1.0/float(self.fps) and self.play:
if not self.record and self.fps > 0 and time_diff >= 1.0/float(self.fps) and self.play:

index, min_frame = self.find_lowest_frame(self.process_qs)

Expand Down