Skip to content
This repository has been archived by the owner on May 25, 2022. It is now read-only.

Update capture_screenshot file for s frequency #599

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions projects/capture_screenshot/screenshot.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@
sec = 60 * 60 / args.frequency
elif args.type == 'm':
sec = 60 / args.frequency
elif args.type == 's':
sec = args.frequency

if sec < 1.:
sec = 1.
Expand Down