- Screen Recorder App (Easiest for beginners)
When I moved from Windows to my M4 MacBook Pro, I just wanted something simple that lets me screen record with audio on Mac and edit right away. A dedicated Screen Recorder app was the least frustrating option for me.
Steps:
• Install and open your Screen Recorder app (I personally use Screenlume).
• Click Record.
• Choose Screen + Microphone (and system audio if needed).
• Start recording.
• Stop → it opens directly in the editor.
• Trim mistakes, add text, export.

This feels closest to the “record + edit in one place” experience Windows users are used to.
2. Command Line (More control, more geeky)
I only use this when I want control or automation. It’s not beginner-friendly, but it works.
Steps:
• Install Homebrew.
• Install FFmpeg:
brew install ffmpeg
• List devices:
ffmpeg -f avfoundation -list_devices true -i ""
• Record screen + mic (example):
ffmpeg -f avfoundation -i "1:0" -r 30 output.mp4

This works fine for screen record with audio on Mac, especially if you're narrating with a mic.
If you later want to trim the video quickly, Apple explains QuickTime trimming here:
https://support.apple.com/guide/quicktime-player/record-your-screen-qtp97b08e666/mac
3.Built-in macOS Recorder (No extra software)
Honestly, this is what I still use most of the time because it’s fast and stable. Apple’s official guide explains it clearly here:
https://support.apple.com/guide/mac-help/take-a-screenshot-or-screen-recording-mh26782/mac
Steps:
• Press Shift + Command + 5.
• Choose Record Entire Screen or Selected Portion.
• Click Options → select Microphone.
• Click Record.
• Stop from the menu bar when done.

For editing:
• Open the file in QuickTime for quick trims.
• Or import into iMovie if you need real editing (cuts, titles, audio adjustments). Apple’s iMovie page is here:
https://support.apple.com/imovie
If you’re brand new to Mac, start with method (3).
If you plan to make tutorials regularly, method (1) will save you time long term.