✓ Verified 💻 Development ✓ Enhanced Data

Record

macOS CLI tool for recording audio (microphone), screen (video/screenshot), and camera (video/photo)

Rating
4.8 (79 reviews)
Downloads
584 downloads
Version
1.0.0

Overview

macOS CLI tool for recording audio (microphone), screen (video/screenshot), and camera (video/photo)

Complete Documentation

View Source →

record CLI

A macOS command-line tool for recording audio, screen, and camera output. Designed for both human users and AI agents operating in a terminal.

Output file paths are printed to stdout. Status messages go to stderr, making the tool pipeline-friendly.

IMPORTANT: User Consent Required

Always ask the user for explicit permission before running any recording command. Recording audio (microphone), screen, or camera captures sensitive data and may be unexpected. Before executing record audio, record screen, or record camera, confirm with the user that they intend to record, what will be captured, and the duration. Listing devices (--list-devices, --list-displays, --list-windows, --list-cameras) and taking screenshots (--screenshot) are less intrusive but should still be confirmed if not explicitly requested.

Installation

bash
brew install atacan/tap/record

Quick Reference

bash
# Audio
record audio --duration 10                    # Record 10s of audio
record audio --duration 5 --json              # JSON output with file path

# Screen
record screen --duration 5                    # Record screen for 5s
record screen --screenshot                    # Take a screenshot
record screen --screenshot --output /tmp/s.png

# Camera
record camera --duration 5                    # Record webcam for 5s
record camera --photo                         # Take a photo

Subcommands

SubcommandPurpose
record audioRecord from microphone
record screenRecord screen video or take a screenshot
record cameraRecord from webcam or take a photo
Each subcommand has its own --help flag with full option details.

Key Patterns for AI Agents

Get the output file path

The tool prints the output file path to stdout. Capture it:

bash
FILE=$(record audio --duration 5)
echo "Recorded to: $FILE"

Use --json for structured output

All subcommands support --json to emit machine-readable JSON to stdout:

bash
record audio --duration 5 --json

Use --duration for non-interactive recording

Without --duration, the tool waits for a keypress to stop (requires a real TTY). AI agents should always pass --duration to ensure the command terminates.

List available devices

bash
record audio --list-devices
record screen --list-displays
record screen --list-windows
record camera --list-cameras

Add --json for structured output.

Control output location

bash
record audio --duration 5 --output /tmp/recording.m4a
record screen --screenshot --output /tmp/screen.png --overwrite

Without --output, files are saved to a temporary directory.

Screen recording with audio

bash
record screen --duration 10 --audio system    # system audio only
record screen --duration 10 --audio mic       # microphone only
record screen --duration 10 --audio both      # system + mic

Capture a specific window or display

bash
record screen --screenshot --window "Safari"
record screen --duration 5 --display primary

macOS Permissions

The terminal app (Terminal, iTerm2, etc.) must have the relevant permission enabled in System Settings > Privacy & Security:

  • Microphone - for record audio and record camera --audio
  • Screen Recording - for record screen
  • Camera - for record camera

Troubleshooting

If a command fails or behaves unexpectedly, run:

bash
record <subcommand> --help

The --help output always reflects the installed version and is the authoritative reference.

Detailed Command References

For full option listings and advanced usage:

Installation

Terminal bash

openclaw install record
    
Copied!

💻Code Examples

record camera --photo # Take a photo

record-camera---photo--take-a-photo.txt
## Subcommands

| Subcommand | Purpose |
|---|---|
| `record audio` | Record from microphone |
| `record screen` | Record screen video or take a screenshot |
| `record camera` | Record from webcam or take a photo |

Each subcommand has its own `--help` flag with full option details.

## Key Patterns for AI Agents

### Get the output file path

The tool prints the output file path to stdout. Capture it:

echo "Recorded to: $FILE"

echo-recorded-to-file.txt
### Use --json for structured output

All subcommands support `--json` to emit machine-readable JSON to stdout:

record audio --duration 5 --json

record-audio---duration-5---json.txt
### Use --duration for non-interactive recording

Without `--duration`, the tool waits for a keypress to stop (requires a real TTY). AI agents should always pass `--duration <seconds>` to ensure the command terminates.

### List available devices

record camera --list-cameras

record-camera---list-cameras.txt
Add `--json` for structured output.

### Control output location

record screen --screenshot --output /tmp/screen.png --overwrite

record-screen---screenshot---output-tmpscreenpng---overwrite.txt
Without `--output`, files are saved to a temporary directory.

### Screen recording with audio

record screen --duration 5 --display primary

record-screen---duration-5---display-primary.txt
## macOS Permissions

The terminal app (Terminal, iTerm2, etc.) must have the relevant permission enabled in **System Settings > Privacy & Security**:

- **Microphone** - for `record audio` and `record camera --audio`
- **Screen Recording** - for `record screen`
- **Camera** - for `record camera`

## Troubleshooting

If a command fails or behaves unexpectedly, run:
example.sh
# Audio
record audio --duration 10                    # Record 10s of audio
record audio --duration 5 --json              # JSON output with file path

# Screen
record screen --duration 5                    # Record screen for 5s
record screen --screenshot                    # Take a screenshot
record screen --screenshot --output /tmp/s.png

# Camera
record camera --duration 5                    # Record webcam for 5s
record camera --photo                         # Take a photo
example.sh
record audio --list-devices
record screen --list-displays
record screen --list-windows
record camera --list-cameras
example.sh
record screen --duration 10 --audio system    # system audio only
record screen --duration 10 --audio mic       # microphone only
record screen --duration 10 --audio both      # system + mic

Tags

#web_and-frontend-development #cli

Quick Info

Category Development
Model Claude 3.5
Complexity One-Click
Author atacan
Last Updated 3/10/2026
🚀
Optimized for
Claude 3.5
🧠

Ready to Install?

Get started with this skill in seconds

openclaw install record