How to Download Twitch Clips on a Mac (No App, No Gatekeeper Prompt)
Updated: 2026-07-29 · Written by the vodfetch founder
To download a Twitch clip on a Mac, paste the clip link into vodfetch in Safari, Chrome, Firefox or Arc and save the MP4. Nothing is installed, so there is no .dmg to mount and no Gatekeeper warning to click past, and the file QuickTime opens natively.
Can you download a Twitch clip on a Mac with nothing installed?
Yes, and on a Mac the "nothing installed" part carries more weight than it does on Windows. Paste the clip link into vodfetch in Safari, Chrome, Firefox or Arc, pick a quality, and the page fetches the clip and hands it to your browser's own downloader. There is no disk image to mount, no application dragged into your Applications folder, no quarantine flag and no login-password prompt anywhere in the process. Nothing is left behind to uninstall when you are done.
The same page behaves identically on an Apple Silicon Mac and an Intel one. A web page has no architecture, so there is no arm64 build and no x86_64 build to choose between, no Rosetta translation, and no chance of downloading the wrong binary for your machine. Arc is Chromium-based and behaves like Chrome here; Safari and Firefox use a slightly different internal route for large files, which as the section below explains does not affect clips at all.
Scale is why clips are the easy case on a Mac. A published Twitch clip cannot exceed 60 seconds, and Twitch's Create Clip API documentation describes clips of 5 to 60 seconds, so even a source-quality 1080p60 clip is tens of megabytes. The media is pulled in 32 MB ranged requests, meaning a typical clip is one or two requests and finishes in seconds on any browser. Full past broadcasts are a different job with different constraints, and those belong to /blog/download-twitch-vods-on-mac-and-windows.
What you skip by not installing a Mac downloader
A downloaded Mac application from an unidentified developer does not simply open. Apple's documented flow is to attempt to open it, then go to the Apple menu, System Settings, Privacy & Security, find the Security section and choose Open Anyway — a button Apple says is available for about an hour after that first attempt — and confirm with your login password. Apple's warning at that point states that the app has not been reviewed and that macOS cannot check whether it has been modified or broken since it was released, and Apple's own guidance calls overriding security settings the most common way that a Mac gets infected with malware.
That friction got measurably worse in 2024. macOS 15 Sequoia removed the old Control-click shortcut, where you could right-click an unsigned app and choose Open to bypass the check in two clicks. From Sequoia onward there is no shortcut: it is the full System Settings trip and an admin password the first time each new unsigned build arrives. If you update a native downloader regularly, that is a recurring tax. A browser page triggers none of it because no executable ever lands on your Mac.
The command-line route costs more than people expect. Homebrew's own documentation requires macOS Sonoma (14) or newer on officially supported hardware plus the Command Line Tools for Xcode, so xcode-select --install pulls a large package from Apple before you have installed a downloader at all. Homebrew's prefix also differs by architecture — /opt/homebrew on Apple Silicon, /usr/local on Intel — which is exactly why copied instructions from older tutorials fail with path errors on a newer Mac.
Intel Macs have a deadline that makes this concrete. macOS 26 Tahoe, released 15 September 2025, is the final macOS version for Intel hardware; Apple has said the release after it requires Apple silicon, and Tahoe itself supports only a short list of Intel models including the 16-inch MacBook Pro (2019), the four-Thunderbolt 13-inch MacBook Pro (2020), the 27-inch iMac (2020) and the 2019 Mac Pro. Native downloader binaries follow the OS. A page in a browser keeps working on an Intel Mac long after a vendor stops shipping an x86_64 build.
Where the clip lands, and how Safari's download list actually behaves
When the clip download finishes, the log's last two lines are "Done: <name>.mp4" and "Saved to your Downloads". Read that second line as the browser's configured download location rather than a hard-coded folder: on a Mac that is the Downloads folder unless you changed it. In Safari the setting lives at Safari, Settings, General, File download location, and it can be pointed at any folder you like.
To see what arrived, click the Show Downloads button near the top-right corner of the Safari window. The popover lists active and completed downloads and lets you reveal a file in the Finder. Chrome no longer has the bottom download shelf that older guides describe — Google replaced it with a Download bubble in the top-right toolbar in 2023, and the flag that restored the shelf was removed in Chromium 119. On a current Mac, both browsers put downloads behind a toolbar button in the same corner.
The real difference between them is what happens afterwards. Safari removes an item from that download list after one day by default; the Remove download list items menu in the same settings pane offers After one day, When Safari quits, or Upon successful download. Chrome's bubble keeps its history. This trips people up regularly: the clip vanishing from Safari's popover overnight does not mean the file was deleted. Open the Downloads folder in the Finder and it is still there. Only the list entry expired.
Why Safari's download limitation does not apply to clips
The Safari warning you will read on other sites is real, but it belongs to a different kind of download. window.showSaveFilePicker, part of the File System Access API, is what lets a page open a system save dialog and write bytes straight to disk. No Safari version supports it, on macOS or iOS, and no Firefox version does either; support is limited to Chromium browsers, which is why compatibility tables put the API at roughly 28% of global browser usage and MDN still flags it as experimental with limited availability. So on a Mac, only Chrome, Edge and Arc can stream a download to disk.
None of that touches a clip. In the client, the save-dialog helper is called from exactly one place: the segmented downloader used for VODs and live recordings. The clip path never goes near it — it fetches the signed MP4 Twitch already stores, wraps the bytes in a Blob and saves them through an anchor element carrying the download attribute. That attribute has been supported in Safari since 10.1 and is available in roughly 96% of browsers worldwide. The clip download is therefore fully native in Safari, and Chrome has no advantage over it here.
The same structure explains the silence around confirmation dialogs, and the size is why it stays that way. The size estimate is computed only for a VOD with a bandwidth figure from its playlist, so a clip estimates nothing and the size field beside the quality dropdown renders empty. Both size prompts — the one before in-browser MP4 conversion and the one that names Chrome and Edge on browsers without the File System Access API — sit inside the segmented downloader and are gated on that estimate, and the memory-buffering prompt only fires above roughly 700 MB. A 60-second clip is an order of magnitude below that line. The Safari-versus-Chrome question is a genuine decision for a six-hour past broadcast and a non-question for a clip, which is why this page does not tell you to switch browsers.
A clip is always .mp4, which is why QuickTime just opens it
The clip download function never loads the MP4 transmuxer, never reads the Format setting and never opens a save dialog. It fetches the MP4 Twitch already stores and saves it with an .mp4 extension. Two practical consequences on a Mac: the MP4/TS switch in Options is inert while a clip is loaded, and the two conversion failures the tool can print — "MP4 conversion failed — choose Format → TS and retry." and "MP4 converter unavailable" — cannot occur on a clip at all, because no conversion is attempted.
That is what keeps QuickTime Player in the picture. Double-click the saved file, or select it in the Finder and press Space for Quick Look, and it plays. The transport-stream problem people associate with stream downloads only arises from the segmented path used for VODs and live recordings, which can produce .ts when the converter is off or unavailable. QuickTime does not open an MPEG transport stream — that is consistently observed behaviour rather than something Apple documents — but a clip download never puts you in that position.
If you do end up with a .ts from a VOD or a live recording, two players handle it on macOS. VLC is the cross-platform answer. IINA is the Mac-native one: free and open source under GPLv3, written in Swift on top of mpv, and per its own site requiring macOS 12 on Apple Silicon or macOS 10.15 on Intel. Worth having installed for other work, but clip downloads specifically never need either of them.
Finding a clip when you only know the streamer's name
You do not need a clip link. Type a bare channel name into the URL box — two to twenty-five characters of letters, digits or underscores, with no slash and no dot — and it is treated as a channel rather than a URL. One behaviour to expect: the channel's live stream is tried first, so if that streamer happens to be broadcasting right now you get the live stream loaded instead of a browse grid. The grid appears when the live lookup fails, which in practice means the channel is offline.
The grid has two parts. Under "Recent VODs & clips" sit the 24 most recent past broadcasts, newest first, with a load-more button. Under "Popular clips" sit twelve clips ranked by view count, opening on the All time ranking, with four period buttons: Today, This week, This month and All time. Switching period re-runs the ranking, and a period with nothing in it prints "No clips in this period." — which on a smaller channel is common for Today and normal rather than an error.
Clicking a clip card writes https://clips.twitch.tv/<slug> into the URL field and starts the analysis immediately, so browsing and downloading are the same two clicks. One detail in that grid is a useful tell: VOD cards can carry an expiry badge, drawn only once a past broadcast has fourteen or fewer days left, and clip cards never carry one at all.
The interface is stating something real there. Past broadcasts run on a deletion clock set by account type — 60 days for Partners and for channels with Prime or Turbo, 14 days for Affiliates, 7 days for everyone else — which /blog/download-twitch-vod-before-deleted covers in full. Highlights escape that clock but are not unbounded either: Twitch announced on 19 February 2025, effective 19 April 2025, that Highlights and Uploads share a single 100-hour storage budget per channel, published and unpublished alike, and /blog/download-twitch-highlights deals with what that means in practice. Clips sit outside both systems, with neither an expiry nor a storage cap, which is why a clip is worth grabbing at leisure and an expiring VOD is not.
The generated filename is stricter than macOS requires
Leave the filename box empty and the name is assembled for you from the broadcaster, the clip's creation date cut to ten characters, the clip title, and the first field of the quality label — producing something like pokimane_2026-07-12_insane clutch_1080p60.mp4. The greyed-out placeholder text in that box is the exact name that will be used, so you can read it before you start rather than discovering it in the Finder afterwards. Type your own name there and it replaces everything except the extension.
Whichever name is used, it is sanitised the same way: backslash, forward slash, colon, asterisk, question mark, double quote, angle brackets and pipe all become underscores, runs of whitespace collapse to single spaces, and the result is truncated to 120 characters. macOS itself only objects to the colon and the forward slash, so this is deliberately stricter than your Mac needs. The payoff is portability — a clip whose title contains a question mark stays a valid filename when the file later lands on an exFAT drive, a Windows machine or a shared network volume.
Getting the clip from your Mac onto an iPhone or iPad
AirDrop is the fastest hop for a file this size. Apple's requirements are Wi-Fi and Bluetooth switched on at both ends and the devices within 30 feet, about 10 metres, of each other. On the Mac, open AirDrop in the Finder sidebar and drag the .mp4 onto the receiving device, or select the file and use the Share menu. A 60-second clip transfers in a couple of seconds, which is the whole argument for downloading on the Mac and pushing it across rather than repeating the download on the phone.
Do not assume the clip lands in Photos. Apple's documentation says received items are saved in the app they were sent from and that some items are saved in the Files app, so a video arriving from a Finder window is not guaranteed to appear in the camera roll. If it is not where you expected, look in Files first, and if you want it in Photos, save it there deliberately from the Files share sheet.
iCloud Drive is the alternative when the devices are not in the same room. Drag the .mp4 into any iCloud Drive folder in the Finder and it appears under iCloud Drive in the Files app on every device signed into the same Apple Account. That also keeps one copy rather than two, which matters if you are collecting clips for an edit. If you would rather skip the Mac entirely and download on the phone itself, that path is covered in /blog/download-twitch-vods-on-iphone-android.
Dropping the clip straight into iMovie or Final Cut Pro
Final Cut Pro's supported media list includes the MP4 container and H.264 video alongside HEVC, MOV, XAVC and ProRes, with AAC among the supported audio formats. A downloaded clip goes onto a timeline without a conversion step. The stronger point is what you are editing: nothing was decoded or re-encoded on the way out, so the file in Final Cut is the asset Twitch stores — the same resolution, frame rate and bitrate the clip had on the site, with no generation loss introduced by the download. What that file does and does not contain is the subject of /blog/download-twitch-clips-no-watermark.
iMovie imports an H.264 MP4 directly; drag the file from the Finder onto an event in the Libraries list. Its safety net is worth knowing about for older material rather than for clips: when iMovie meets media it cannot use — Apple's examples are legacy codecs such as 3ivx, Sorenson and DivX, stranded when macOS Catalina dropped the 32-bit QuickTime 7-era format support that Mojave still had — it creates H.264 copies and moves the originals into an "iMovie Incompatible Media" folder in the same folder as the library, leaving the originals unmodified.
Plan to make your cuts in the editor. There is no trim control while a clip is loaded — trimming, chat export and the chapter list are all VOD-only features and are hidden for a clip — so the whole clip downloads and the in and out points are set on the timeline. That is the right division of labour anyway: the tool's VOD trim snaps outward to whole segments, while an editor gives you frame accuracy. For reframing a clip to a vertical format, see /blog/download-twitch-clips-for-tiktok-youtube-shorts.
How to download a Twitch video
- 1
Copy the clip link
On Twitch, open the clip and copy the address from the Share button or the address bar. Both a clips.twitch.tv/<slug> link and a twitch.tv/<channel>/clip/<slug> link work.
- 2
Open vodfetch in any Mac browser
Safari, Chrome, Firefox and Arc all work on Apple Silicon and Intel. Nothing is downloaded to your Mac and no permission dialog appears at this stage.
- 3
Paste the link, or drop it on the page
Pasting into the URL box starts the lookup on its own, and so does dragging a Twitch link onto the tool area. If you only know the streamer, type the channel name instead and pick a clip from the Popular clips grid that appears when the channel is offline.
- 4
Pick the highest quality offered
The starred entry is the first quality Twitch returned, normally the highest. Read the labels rather than trusting the order, and take the top resolution if the clip is going into an edit.
- 5
Download and check the Downloads folder
The log ends with "Saved to your Downloads". In Safari, use the Show Downloads button near the top-right of the window to reveal the file in the Finder.
- 6
Open it, then move it on
Double-click to play in QuickTime, drag it onto an iMovie event or a Final Cut timeline, or AirDrop it to an iPhone or iPad from the Finder sidebar.
Frequently asked questions
Do I need to install anything on my Mac to download a Twitch clip?
No. The tool is a web page, so the clip is fetched by your browser and saved by your browser. There is no .dmg to mount, no app in the Applications folder, no Gatekeeper prompt asking you to visit System Settings, Privacy & Security and enter your login password, and nothing to uninstall afterwards. That matters more since macOS 15 Sequoia removed the old Control-click shortcut for opening unsigned apps, which turned a two-click bypass into a settings trip and an admin password for each new unsigned build.
Does this work on both Apple Silicon and Intel Macs?
Yes, identically. A web page has no CPU architecture, so there is no arm64 or x86_64 build to choose, and Rosetta is never involved. This is worth weighing against native downloaders on an Intel Mac in particular: macOS 26 Tahoe, released in September 2025, is the last macOS release for Intel hardware, and Apple has said the release after it requires Apple silicon. Vendors eventually stop shipping Intel builds, while a browser page keeps working for as long as the browser does.
Where does the clip save on a Mac, and can I change it?
It goes to your browser's configured download location, which is the Downloads folder unless you changed it — the log line "Saved to your Downloads" refers to that setting rather than a fixed folder. In Safari, change it under Safari, Settings, General, File download location. Unlike a large VOD download in Chrome, a clip is always an ordinary browser download, so it does appear in the download list in every browser.
My clip disappeared from Safari's download list. Was the file deleted?
No. Safari removes items from that list after one day by default, and only the list entry goes — the file stays where it was saved. The Remove download list items menu in Safari, Settings, General lets you choose After one day, When Safari quits, or Upon successful download instead. Chrome's Download bubble keeps its history rather than clearing it, which is the practical difference between the two on a Mac. Open the Downloads folder in the Finder and the .mp4 will still be there.
Do I need Chrome, or is Safari fine for downloading clips?
Safari is fine, and for clips there is no advantage to switching. The File System Access API that lets Chrome, Edge and Arc write a download straight to disk is not supported in any Safari version, but the clip path never uses it: a clip is fetched in one piece and saved through a plain download link, which Safari has supported since 10.1. The browser choice genuinely matters for multi-gigabyte past broadcasts, not for a clip capped at 60 seconds.
Will the downloaded clip open in QuickTime Player?
Yes. A clip always saves as .mp4 because the clip download path never loads the MP4 converter and never reads the Format switch, so you cannot end up with a transport stream from a clip no matter what the setting says. Double-click it, or press Space in the Finder for Quick Look. The .ts files that QuickTime refuses come only from VOD and live-stream downloads; for those, VLC or IINA — the macOS-native mpv-based player — will open them.
Why is the size estimate blank and why did no confirmation dialog appear?
Both are specific to clips. The size estimate is calculated only for a VOD, from the bandwidth figure its playlist reports, so a clip estimates zero and the field beside the quality dropdown renders empty. The two confirmation prompts — one before in-browser MP4 conversion, one for browsers without the File System Access API — live inside the segmented downloader and are triggered by that estimate, so neither can appear for a clip. On a Mac in Safari, a clip download starts immediately with no dialog at all.
How do I get the clip onto my iPhone or iPad?
AirDrop is quickest: turn on Wi-Fi and Bluetooth on both devices, keep them within about 10 metres, then open AirDrop in the Finder sidebar and drag the .mp4 onto the receiving device. Do not assume it lands in Photos — Apple says received items are saved in the app they were sent from, with some saved in Files, so check the Files app first. For devices that are not nearby, drop the file into an iCloud Drive folder in the Finder and open it from Files.
Can I import the clip into Final Cut Pro or iMovie without converting it?
Yes. Final Cut Pro lists the MP4 container and H.264 among its supported formats, with AAC on the audio side, so the clip drops onto a timeline directly. iMovie imports an H.264 MP4 the same way — drag the file from the Finder onto an event in the Libraries list. iMovie's conversion step exists for legacy codecs it cannot use at all, where it creates an H.264 copy and moves the original into an "iMovie Incompatible Media" folder next to the library; a Twitch clip does not go down that path.
Is there a Homebrew formula or a Mac app I should use instead?
You can install a command-line downloader through Homebrew, but count the cost first: Homebrew requires macOS Sonoma or newer on supported hardware plus the Xcode Command Line Tools, which is a large Apple download before the downloader itself, and its install prefix differs between Apple Silicon and Intel, which is why older copy-pasted instructions break with path errors. For clips specifically the browser route finishes in seconds with nothing installed. The page carries standard, clearly marked ads, with no pop-ups and no fake download buttons.
Download your Twitch video now
Paste a Twitch link and save it as MP4 in seconds — free, no account.
Open the Twitch DownloaderRelated guides
How to Download Twitch VODs on Mac and Windows (Free, In Your Browser)
To download a Twitch VOD on Mac or Windows, open the Twitch Downloader web app in any desktop browser, paste the Twitch VOD, clip, or stream URL, choose your quality, and save the MP4 to your computer. It runs entirely in the browser, so there is nothing to install on either operating system.
How to Use a Twitch Downloader: A Beginner's Guide (VODs, Clips, Live & More)
Never downloaded a Twitch video before? Here's the simple, no-jargon guide: what a Twitch downloader is, how to use one step by step, and how to save every kind of Twitch content — VODs, clips, live streams, audio and chat — for free, right in your browser.
How to Download Twitch VODs on iPhone and Android (No App)
To download a Twitch VOD or clip on your phone, open the Twitch Downloader web app in Safari (iPhone) or Chrome (Android), paste the Twitch video link, pick a quality, and tap download. The file saves to your Files app on iOS or your Downloads folder on Android — no app install required.
How to Convert a Twitch VOD to MP3: Extract Audio From Any Twitch Stream
To get the audio from a Twitch VOD, paste the link into the browser-based downloader, choose the audio-only quality and click Download. What you get is an .m4a or .aac file — AAC audio copied straight from Twitch, not a re-encoded MP3.
How to Save a Twitch VOD Without OBS (No Install, Browser Only)
You do not need OBS, a desktop app, or any technical setup to save a Twitch VOD. This is the fastest, no-install way: paste the link into a free browser tool and download the past broadcast as an MP4 in seconds — no account, no configuration.
Do You Need a Twitch Downloader Extension? Browser Tool vs Extension
Searching for a Twitch downloader extension? Before you install one, it's worth knowing that a browser tool does the same job — save a VOD, clip or stream as MP4 — by pasting a link, with no install and no permissions. Here's an honest comparison of extension vs browser tool, and when each actually makes sense.