A single afternoon of video shooting, a few months of screen recordings, and a handful of downloaded movies can quietly consume 50, 80, even 120 gigabytes on a Mac. The frustrating part is that most of it sits in folders you rarely open. This guide walks through every major category of large media, tells you exactly where to find the files, and shows you how to evaluate and remove them safely, without wiping anything you actually need.
Why Media Files Are the Fastest Path to a Full Disk
Text documents, PDFs, and even most apps are measured in megabytes. A single 4K video clip shot on a mirrorless camera or an iPhone can run 2 to 8 GB. Screen recordings made with QuickTime or the built-in macOS recorder default to uncompressed or lightly compressed formats that balloon quickly. Downloaded movies and TV episodes from streaming apps add another layer. Unlike system caches, these files do not clean themselves up. They accumulate silently until macOS starts warning you about storage.
Step 1: Get a Real Picture of What Is Taking Up Space
Before deleting anything, understand what you are actually dealing with. macOS has a built-in overview, but it is not granular enough for a real cleanup.
Use the built-in Storage report as a starting point
- Open System Settings (or System Preferences on older macOS).
- Go to General > Storage.
- Wait for the bar to populate. Look for the Movies, Photos, and Other categories.
This view gives you category totals, but it will not tell you which specific folders or files are the largest offenders. For that, you need to dig deeper.
Use Terminal to list the biggest files on your Mac
Open Terminal (in /Applications/Utilities/) and run this command to find files larger than 500 MB anywhere in your home folder:
find ~ -size +500M -not -path "*/.*" 2>/dev/null | sort
For a size-sorted list with human-readable output, use:
find ~ -size +500M -not -path "*/.*" -exec ls -lh {} \; 2>/dev/null | sort -k5 -rh | head -40
This surfaces large files regardless of extension. You will often be surprised by what shows up: old virtual machine snapshots, archived Xcode simulators, and forgotten movie exports sitting in ~/Downloads or ~/Desktop.
Step 2: Hunt Down Screen Recordings
Screen recordings are one of the most overlooked sources of wasted space. A 10-minute QuickTime recording at full resolution can easily exceed 3 GB.
Default save locations to check:
~/Desktop: QuickTime saves here by default unless you changed it.~/Movies: Some apps default to this folder.~/Downloads: If you moved files around without organizing them.
To find all .mov files in your home folder larger than 200 MB:
find ~ -name "*.mov" -size +200M 2>/dev/null
QuickTime screen recordings are named with timestamps like Screen Recording 2025-11-14 at 10.22.31 AM.mov. Anything with that naming pattern that you have not deliberately archived is almost certainly safe to delete. Move them to Trash, review once, then empty.
Step 3: Find and Remove Large Video Files
If you shoot or edit video, your Mac is probably storing raw footage, project exports, and duplicate renders across several folders. The key places to check:
Final Cut Pro and iMovie libraries
Final Cut Pro stores everything inside a .fcpbundle package. These live in ~/Movies/ by default and can be tens of gigabytes each. Right-click a library and choose Show Package Contents to see original media, render files, and proxies separately. If a project is finished, you can delete render files from inside Final Cut Pro: go to File > Delete Generated Library Files before archiving or deleting the bundle.
iMovie libraries live at ~/Movies/iMovie Library.imovielibrary and follow the same logic.
Downloaded movies and TV episodes
The Apple TV app stores downloads here:
~/Library/Containers/com.apple.TVWatchList/Data/Library/Application Support/TVWatchList/
It is easier to manage these from inside the TV app itself: go to Library, find the downloaded item, right-click, and choose Remove Download. You keep the purchase license but free up the local storage.
VLC, Infuse, Plex, and similar apps often cache or store media in ~/Movies/ or ~/Downloads/. Check those folders for .mkv, .mp4, and .avi files you no longer need:
find ~/Movies ~/Downloads -name "*.mkv" -o -name "*.mp4" -o -name "*.avi" 2>/dev/null | xargs ls -lh 2>/dev/null | sort -k5 -rh
Video from photo imports
When you import from an iPhone or camera, macOS sometimes copies video files to ~/Pictures/ alongside stills. Check for large files there as well. If you are using the Photos app and have iCloud Photos enabled, you can offload originals to iCloud and keep only optimized versions locally: go to Photos > Settings > iCloud and select Optimize Mac Storage.
Step 4: Audit Your Downloads Folder
The ~/Downloads folder is where large files go to be forgotten. Disk image files (.dmg), ZIP archives of videos, podcast episodes saved manually, and old backups stack up over months and years.
To see your largest Downloads by size in one command:
du -sh ~/Downloads/* | sort -rh | head -20
Sort by size descending and work through the list. Installed apps you downloaded as .dmg files do not need the installer anymore. Video files you have already watched and do not need offline can go. Archived ZIP files containing footage you have already imported are duplicates.
Step 5: Check for Duplicate Media Files
Duplicate video and photo files are a common source of wasted space, especially if you have imported photos more than once or copied project media between drives. Unfortunately, macOS has no built-in duplicate finder. You can do a basic check with Terminal by comparing file sizes:
find ~ -name "*.mp4" -size +100M 2>/dev/null | sort
Look for files with identical names or timestamps in different folders. A more thorough duplicate search requires a dedicated tool since true deduplication checks file content, not just names.
Step 6: Use a Disk Visualizer to Surface What You Missed
Terminal commands are powerful but not always easy to act on quickly. A visual disk map lets you see relative file sizes at a glance, spot outliers instantly, and drill into nested folders without memorizing paths.
Crumb includes a largest-items view that lists your biggest files and folders ranked by size across the whole disk. You can see whether a single video library is responsible for 40 GB, or whether the storage is fragmented across hundreds of smaller files in unexpected places. Each item is shown with its full path so you can open the containing folder directly and decide what to keep. Crumb runs entirely on-device and requires no account, so your file paths and metadata never leave the machine.
The visualizer is especially useful for finding large files to delete in locations that are buried several folders deep, like a Final Cut render cache or a Plex transcoding directory, that the Terminal commands above might not catch because the outer folder name was not obvious.
Step 7: Empty Trash and Verify the Reclaim
Files moved to Trash still consume disk space until you empty it. After reviewing your deletions, right-click the Trash icon in the Dock and choose Empty Trash. Then return to System Settings > General > Storage and wait 30 to 60 seconds for the bar to refresh. On a typical Mac with accumulated media, a single focused session commonly reclaims 30 to 80 GB.
If the bar does not update immediately, that is normal. macOS recalculates storage usage in the background. A full logout and login usually forces a refresh if you need an accurate count right away.
Maintaining a Leaner Media Footprint Going Forward
A few habits keep media from piling up again:
- Set a reminder once a month to clear
~/Downloadsand~/Desktop. - Export finished video projects to an external drive and delete the working library from the Mac.
- Use Optimize Mac Storage in iCloud Photos to keep only thumbnails locally.
- After a screen recording session, review and delete recordings immediately rather than leaving them on the Desktop.
- For movies and TV, rely on streaming or keep downloads only for active travel periods.
Cleaning up large media files on a Mac is mostly a matter of knowing where to look. The Terminal commands above will surface the biggest offenders in a few minutes. For a faster visual pass across the whole disk, especially when you want to spot large files buried in unexpected locations, running Crumb's largest-items view at the start of a cleanup session saves a significant amount of time.