How To Make A File Smaller On Mac

8 min read

How to Make a File Smaller on Mac: A Step‑by‑Step Guide

If you’ve ever tried to attach a document to an email, upload a video to a cloud service, or simply free up space on your Mac, you know the frustration of large files that won’t shrink. So fortunately, macOS offers a variety of built‑in tools and third‑party solutions that let you reduce file size without sacrificing essential quality. This guide walks you through the most effective methods for compressing documents, images, audio, and video files, explains the science behind each technique, and answers common questions so you can keep your Mac running smoothly and your storage under control.


1. Why Files Grow Large and When to Trim Them

Before diving into the “how,” it’s helpful to understand why files become bulky:

  • High‑resolution media: Photos captured with modern cameras or iPhones can exceed 20 MB each, while 4K video clips easily reach several gigabytes.
  • Unoptimized formats: PDFs saved with embedded fonts, or audio recorded in lossless formats (FLAC, WAV), retain all original data, inflating size.
  • Redundant data: Duplicate layers in Photoshop files, unused tracks in video projects, or hidden metadata can add unnecessary weight.

Trimming files is not just about fitting within email limits; it also improves performance, speeds up backups, and extends the lifespan of SSD storage, which has a finite number of write cycles.


2. General Tips Before Using Specific Tools

  1. Create a backup – Always keep a copy of the original file in case the compression removes needed detail.
  2. Choose the right format – Some formats are inherently smaller (e.g., JPEG for photos, MP4/H.264 for video). Converting to a more efficient codec can yield dramatic reductions.
  3. Trim excess content – Crop images, cut silent sections from audio, or delete unnecessary pages from PDFs.
  4. Remove metadata – Exif data in photos, ID3 tags in audio, and hidden comments in PDFs often add kilobytes to megabytes of data.

3. Compressing PDFs on macOS

3.1 Using Preview (Built‑in)

  1. Open the PDF in Preview.
  2. Click File > Export….
  3. In the dialog, select Quartz Filter and choose Reduce File Size.
  4. Choose a destination and click Save.

Why it works: The Quartz filter recompresses images inside the PDF using a lower DPI (dots per inch) and strips unnecessary metadata Worth keeping that in mind..

3.2 Using the “Compress PDF” Shortcut (Automator)

  1. Open AutomatorQuick Action.
  2. Add the action “Apply Quartz Filter to PDF Documents” and select Reduce File Size.
  3. Save the workflow as “Compress PDF.”
  4. Now, right‑click any PDF, go to Quick Actions, and choose Compress PDF.

This method lets you batch‑process many PDFs with a single right‑click.

3.3 Third‑Party Alternatives

  • PDF Squeezer – Offers preset quality levels and retains hyperlinks.
  • Smallpdf (desktop app) – Provides advanced compression options, such as “Strong” vs. “Basic” reduction.

4. Shrinking Images

4.1 Preview’s Export Function

  1. Open the image in Preview.
  2. Choose File > Export….
  3. Select JPEG (or HEIF for newer Macs) as the format.
  4. Drag the Quality slider left to lower the file size; watch the previewed size at the bottom.
  5. Click Save.

Tip: Reducing the resolution from 300 dpi to 150 dpi for web use can cut size by half while still looking crisp on screens.

4.2 Using the “Reduce File Size” Quartz Filter

Follow the same steps as for PDFs, but select Reduce File Size under Quartz Filter. This automatically applies JPEG compression and downsamples the image.

4.3 Batch Processing with ImageOptim

  1. Download ImageOptim (free, open source).
  2. Drag and drop a folder of images onto the app.
  3. The program removes unnecessary metadata and applies lossless compression where possible.

When to use: Ideal for photographers who need to preserve visual quality while shrinking file size for web galleries.

4.4 Converting to HEIC/HEIF

HEIC (High Efficiency Image Container) offers up to 50 % smaller files than JPEG at comparable quality. macOS High Sierra and later support this format natively:

  1. In Preview, choose File > Export….
  2. Set Format to HEIC.
  3. Adjust Quality and click Save.

5. Reducing Audio File Size

5.1 Converting to AAC or MP3

  1. Open the audio file in Music (or iTunes).
  2. Select File > Convert > Create AAC Version (or Create MP3 Version if the option is enabled).
  3. In Preferences > Files, set the Import Settings to a lower bitrate (e.g., 128 kbps).

AAC provides better sound quality at lower bitrates compared to MP3, making it a preferred choice for Apple ecosystems.

5.2 Using Audacity (Free, Open‑Source)

  1. Install Audacity.
  2. Open the audio file, then go to File > Export > Export as MP3.
  3. Choose a lower Bit Rate Mode (e.g., Constant at 128 kbps).
  4. Click Save.

Audacity also lets you trim silence, normalize volume, and remove background noise, all of which can reduce file size.

5.3 Removing Metadata

Audio files often embed album art, lyrics, and other tags. Use Meta (a macOS utility) or Kid3 to strip these tags, shaving off a few kilobytes per track.


6. Compressing Video Files

Video is typically the biggest culprit for storage hogging. macOS’s QuickTime Player and iMovie provide straightforward ways to shrink videos without needing expensive software Worth keeping that in mind..

6.1 QuickTime Player “Export”

  1. Open the video in QuickTime Player.
  2. Choose File > Export As and select a lower resolution (e.g., 720p instead of 1080p).
  3. In the Options dialog, choose H.264 as the codec and adjust the Quality slider toward Low for smaller files.
  4. Click Save.

6.2 Using iMovie for Advanced Trimming

  1. Launch iMovie and start a new project.
  2. Drag the video onto the timeline.
  3. Trim unwanted sections, cut out extra footage, or lower the resolution via File > Share > FileResolution (choose 720p).
  4. Set Quality to Low or Medium and export.

6.3 HandBrake – The Power User’s Choice

HandBrake is a free, open‑source transcoder that gives fine‑grained control over bitrate, codec, and resolution.

  1. Download HandBrake.
  2. Open the video, then select a Preset such as Fast 720p30.
  3. Under the Video tab, adjust the Average Bitrate (e.g., 1500 kbps for decent quality).
  4. Click Start Encode.

Why it works: HandBrake re‑encodes the video using more efficient settings, often cutting file size by 70‑80 % while preserving watchable quality Which is the point..


7. Managing Large Files System‑Wide

7.1 Using “About This Mac” → Storage

  1. Click the Apple logo > About This Mac > Storage > Manage….
  2. Review recommendations such as Store in iCloud, Optimize Storage, and Reduce Clutter.
  3. The Documents tab lists files larger than 1 GB, allowing quick identification of candidates for compression.

7.2 Terminal Command for Quick Size Check

find ~ -type f -size +100M -exec ls -lh {} \; | awk '{print $9 ": " $5}'

This one‑liner lists every file in your home directory larger than 100 MB, helping you target the biggest offenders Not complicated — just consistent. Nothing fancy..

7.3 Automating Compression with a Folder Action

  1. Open AutomatorFolder Action.
  2. Set the folder (e.g., Downloads).
  3. Add actions: Filter Finder Items (size > 10 MB) → Run Shell Script that calls sips for images or ffmpeg for videos.
  4. Save. Now, any file dropped into the folder will be automatically compressed.

8. Frequently Asked Questions

Q1: Will compressing a PDF make the text unreadable?
A: Using the built‑in Reduce File Size filter lowers image resolution but keeps vector text intact, so readability remains unchanged. If you need higher fidelity, choose a custom Quartz filter that only compresses images And that's really what it comes down to. Took long enough..

Q2: Is HEIC compatible with all devices?
A: Most modern smartphones and browsers support HEIC, but older Windows versions may require additional codecs. When sharing with a mixed audience, keep a JPEG backup.

Q3: How much quality loss is acceptable for video?
A: For casual viewing, a bitrate of 1500–2500 kbps at 720p yields a good balance. Professional work may require higher bitrates; test a short clip before batch processing.

Q4: Can I compress a file without creating a new copy?
A: Some tools (e.g., ImageOptim) overwrite the original after compression, but it’s safer to keep the original untouched, especially for irreplaceable media And that's really what it comes down to..

Q5: Does macOS automatically delete temporary files after compression?
A: Yes, most native apps clean up temporary caches. That said, third‑party utilities may leave hidden files; use CleanMyMac X or similar tools to clear leftovers Most people skip this — try not to..


9. Best Practices for Ongoing File Management

  • Set default export settings: In apps like Photoshop, Lightroom, or Final Cut Pro, configure export presets to use web‑friendly resolutions and codecs.
  • Schedule periodic clean‑ups: Allocate 15 minutes each month to run the Storage Management tool and delete or compress old projects.
  • apply cloud storage wisely: Store original high‑resolution files in iCloud or an external drive, while keeping compressed versions locally for day‑to‑day use.
  • Educate collaborators: Share the same compression guidelines with teammates to avoid a flood of oversized files in shared folders.

10. Conclusion

Making a file smaller on a Mac is far from a mystery; with the right combination of built‑in utilities, free third‑party apps, and smart workflow habits, you can shrink PDFs, images, audio, and video by up to 80 % without compromising the core content. Start by identifying the largest files on your system, choose the appropriate compression method, and always keep a backup of the original. By integrating these practices into your regular workflow, you’ll free up valuable storage, speed up file transfers, and keep your Mac humming along for years to come.

Remember: compress wisely, back up responsibly, and enjoy a tidier digital life.

Hot and New

Straight from the Editor

Hot Off the Blog


Connecting Reads

Stay a Little Longer

Thank you for reading about How To Make A File Smaller On Mac. We hope the information has been useful. Feel free to contact us if you have any questions. See you next time — don't forget to bookmark!
⌂ Back to Home