Every week in my training sessions, someone asks me how to record their screen. Maybe they need to create a tutorial, document a software bug, capture a video call, or save a streaming presentation. The answer is always the same: your Mac already has everything you need. No additional software purchase required. After helping hundreds of clients with screen recording, I've developed a comprehensive guide to mastering macOS's built-in screen recording capabilities.
Meet the Screenshot App: Your Screen Recording Command Center
Most Mac users know about screenshots (Command+Shift+3 for full screen, Command+Shift+4 for selection). But with macOS Mojave in 2018, Apple introduced a unified "Screenshot" app that handles both screenshots and screen recordings. This app is the foundation of screen recording on your Mac.
Opening the Screenshot App
The Screenshot app can be opened several ways:
- Press Command+Shift+5 (the unified screenshot shortcut)
- Open Launchpad and find "Screenshot" (or "Grab" on older systems)
- Search in Spotlight for "Screenshot"
- Use Touch Bar if your MacBook has one
The Screenshot Toolbar
When you open Command+Shift+5, a toolbar appears at the bottom of your screen with six options:
- Capture Entire Screen: Records everything on all screens
- Capture Selected Window: Records a specific window you click
- Capture Selected Portion: Draw a rectangle to record just that area
- Record Entire Screen: Starts recording of all screens
- Record Selected Portion: Draw rectangle, records only that area
- Options: Configure save location, timer, microphone, and more
Recording Your Screen: Step-by-Step
Let me walk you through the recording process:
Basic Screen Recording
- Press Command+Shift+5 to open the Screenshot toolbar
- Click "Record Entire Screen" (the icon looks like a small screen with a circle)
- A thumbnail of each connected display appears
- Click the display you want to record, or click "Record" to record all displays
- A red recording indicator appears in the menu bar (the time counting indicates recording)
- To stop, click the Stop button in the menu bar, or press Command+Control+Esc (Escape)
Recording a Selection
For recording just part of your screen:
- Press Command+Shift+5
- Click "Record Selected Portion"
- Your cursor becomes a crosshair
- Click and drag to draw a rectangle around the area you want to record
- Click "Record" in the center of the selection
- Press Command+Control+Esc to stop
Using the Timer
The Options menu lets you set countdown timers:
- None: Recording starts immediately when you click
- 5 seconds: Gives you time to position windows or prepare
- 10 seconds: Useful when you need to set up complex scenes
Audio Recording: Capture System and Microphone Sound
One of macOS's best-kept secrets is audio recording capability. With the right setup, you can record:
- Microphone audio: Your voice or ambient sound
- System audio: Sounds from apps, including music, alerts, and more
- Both: Mix microphone and system audio together
Recording with Microphone
In the Screenshot toolbar Options menu:
- Click "Options"
- Under "Microphone," select your input device
- For built-in Mac microphone, choose "MacBook Pro Microphone" or similar
- For external microphone, select it from the list
Recording System Audio (Apple Silicon and T2 Macs)
If you have a Mac with Apple Silicon (M1, M2, M3) or Intel with T2 chip, you can record system audio:
- Open System Settings > Sound > Input
- Look for "MacBook Pro Speakers" or similar as an input option (this is the "Loopback" input)
- Select this as your microphone in Screenshot Options
- System sounds will now be included in recordings
Note: On Intel Macs without T2, system audio recording requires third-party software like Soundflower or Loopback.
QuickTime Player: The Alternative Screen Recorder
QuickTime Player, installed on every Mac, has built-in screen recording that predates the Screenshot app:
QuickTime Recording Method
- Open QuickTime Player (in Applications folder)
- Click File > New Screen Recording
- The same Screenshot toolbar appears
- Configure your options and click Record
QuickTime Advantages
QuickTime offers some unique benefits:
- Immediate playback: Recording saves and opens in QuickTime automatically
- Easy editing: Basic trimming available via Edit > Trim
- Format options: File > Export As for different resolutions
- No menu bar recording indicator: Cleaner recording experience
QuickTime Export Options
After recording in QuickTime:
- File > Save: Saves as .mov file
- File > Export As: Offers 1080p, 4K, or custom resolution
- File > Export For Web: Optimized file size
Command Line Screen Recording
For power users, macOS includes the screencapture command:
Basic screencapture Commands
# Record screen to file (press Ctrl+C to stop) screencapture -v recording.mov # Record with microphone screencapture -v -m recording.mov # Record selection only (interactive) screencapture -v -s recording.mov # Record with delay screencapture -v -T 5 recording.mov
FFmpeg: Professional Screen Recording
If you have FFmpeg installed (via Homebrew: brew install ffmpeg), you get professional-grade recording:
# High quality recording with audio ffmpeg -f avfoundation -capture_rate 30 -i "1:0" -c:v libx264 -preset fast -crf 23 -c:a aac -b:a 192k output.mov # Explanation: # -f avfoundation: Use macOS AV foundation # -capture_rate 30: 30 FPS # -i "1:0": Video device 1, Audio device 0 # -c:v libx264: H.264 video codec # -crf 23: Quality setting (lower = better) # -c:a aac: AAC audio codec
Advanced Screenshot App Options
The Options menu in the Screenshot toolbar contains powerful settings:
Save Location
By default, recordings save to Desktop. Change this to:
- Documents folder
- Specific app (Messages, Mail, Preview)
- Clipboard (for quick pasting)
- Any custom folder
Timer Options
The countdown timer helps you:
- Prepare your screen before recording
- Minimize distractions from the recording process
- Set up complex multi-window scenarios
Show Mouse Pointer
Enable this to show clicks and cursor movement. Options include:
- Show click in recording when clicking
- Show click number when clicking rapidly
Floating Thumbnail
When enabled, a thumbnail preview appears briefly after recording. This lets you:
- Quickly access the recording
- Delete and re-record if unsatisfied
- Share immediately
Recording for Different Purposes
Screen recording needs vary by use case. Here's my recommended setup for common scenarios:
Software Tutorials
- Area: Selected portion (exclude menu bar and Dock)
- Resolution: 1920x1080 (1080p) unless showing retina details
- FPS: 30fps is sufficient for tutorials
- Audio: Microphone only, or microphone + system audio
- Tip: Use a second display to show notes while recording
Bug Documentation
- Area: Selected window or specific area showing the bug
- Audio: Microphone to narrate steps to reproduce
- Resolution: Native resolution to capture exact bug behavior
- Tip: Record twice: once showing normal behavior, once showing the bug
Video Calls Recording
- Area: FaceTime or Zoom window
- Audio: System audio (both parties) if possible
- Quality: High quality for archival
- Tip: Inform all participants you're recording (ethical requirement)
Game Recording
- Area: Full screen
- FPS: 60fps for smooth gameplay
- Audio: System audio captures game sounds
- Codec: H.265/HEVC if available for smaller files
Storage and File Format
Understanding screen recording file formats helps you manage storage:
Default Format: HEVC
Modern Macs record in HEVC (H.265) codec, which provides:
- Small file sizes: 50-70% smaller than H.264
- High quality: Maintains visual quality at lower bitrates
- Efficiency: Lower CPU usage during playback
File Size Estimation
Typical recording sizes on a 1080p display:
- 1 minute: 30-60 MB (highly variable based on content)
- 10 minutes: 300-600 MB
- 1 hour: 1.8-3.6 GB
Reducing File Size
If storage is a concern:
- Record at lower resolution (select smaller area)
- Use H.264 instead of HEVC (in QuickTime: Export As > 1080p)
- Edit recording to remove unwanted sections
- Compress after recording using HandBrake (free)
Troubleshooting Recording Issues
Here are common problems and solutions:
Recording Won't Start
- Check if another app is using the camera (recording indicator appears)
- Restart the Screenshot app (quit and reopen)
- Check System Settings > Privacy & Security > Screen Recording is enabled for Screenshot
Audio Not Recording
- Verify microphone is selected in Options
- Check System Settings > Sound > Input shows your microphone
- Ensure microphone isn't muted
- For system audio, verify your Mac supports audio loopback
Recording is Black
If your recording is all black:
- DRM-protected content (Netflix, Disney+, etc.) cannot be recorded
- Some apps block screen recording for security
- Try recording a different app to confirm recording works
Large File Size
If recordings are too large:
- Record a smaller area
- Use lower frame rate (some third-party tools)
- Export in QuickTime to smaller format
- Delete old recordings or move to external storage
My Screen Recording Workflow
Here's my actual workflow for creating training videos:
- Open the app I want to record
- Press Command+Shift+5, select "Record Selected Portion"
- Draw selection around the app window
- Set 5-second timer
- Position windows, run through demo once without recording
- Record actual demo with voiceover
- Press Command+Control+Esc to stop
- Open in QuickTime, trim any excess beginning/end
- Export as 1080p for YouTube or keep as HEVC for smaller size
Third-Party Alternatives
While macOS built-in tools cover 95% of needs, some situations benefit from third-party software:
| Feature | Built-in | OBS (Free) | ScreenFlow (Paid) |
|---|---|---|---|
| Basic recording | Yes | Yes | Yes |
| Editing | Basic trim | Minimal | Full editor |
| Multi-track | No | Yes | Yes |
| Cost | Free | Free | $129 |
Conclusion
Your Mac has professional-grade screen recording built right in—no additional purchase necessary. The Screenshot app and QuickTime Player together handle everything from quick screen captures to hour-long recordings with audio.
The key is knowing what's available and how to configure it. I encourage you to spend 5 minutes opening Command+Shift+5 and exploring the Options. Practice making a short recording. By the time you actually need to record your screen for something important, you'll be ready.