https://github.com/cdata/montage-recorder
Script to help record your screen at intervals on OSX
https://github.com/cdata/montage-recorder
bash montage osx screencapture screenshot script timelapse
Last synced: 2 months ago
JSON representation
Script to help record your screen at intervals on OSX
- Host: GitHub
- URL: https://github.com/cdata/montage-recorder
- Owner: cdata
- Created: 2018-04-19T16:26:59.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-04-19T16:27:44.000Z (about 7 years ago)
- Last Synced: 2025-02-02T00:31:57.734Z (4 months ago)
- Topics: bash, montage, osx, screencapture, screenshot, script, timelapse
- Language: Shell
- Size: 1000 Bytes
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Montage Recorder
This repo contains a small script that I use to record my screen at set
intervals. Currently it only supports Mac OSX.## Usage
You can configure the following things:
- *Output folder (o)*: folder to save screenshots to
- *Start index (i)*: the index from which to begin counting screenshots.
Files will be named after this index. This setting is useful when resuming
a recording session.
- *Time interval (t)*: the amount of time in seconds between each screenshot.
- *Delay (d)*: an amount of time in seconds to wait before the first screenshot
is captured.
- *Force start (y)*: skip prompt to begin recording after the script is
invoked.For example, this command will record screenshots every 30 seconds to a folder
called `mymontage` after a 5 second delay:```
./record.sh -o mymontage -t 30 -d 5
```