Back to blog

How to Turn a Video Into a Live Photo (2026)

Turn an MP4 or MOV into an iPhone Live Photo in three ways: in your browser, on iPhone, or on Mac. Learn what iOS checks and how to verify it worked.

September 20, 2026Livp TeamLivp Team

You have a clip you like. Maybe it's three seconds of your kid laughing, or the moment the waves broke, or a video someone sent you. What you want is to open it in Photos, press and hold, and watch it move.

That is a Live Photo, and you can make one from any video. Here are three ways to do it, what is actually happening inside the file, and how to check it worked before you delete the original.

Short answer: the fastest route is our browser converter — drop the video in, pick the cover frame, download, then save the files to Photos. It runs entirely on your device and takes about a second. If you would rather do it on the phone itself, scroll to method 2.

What a Live Photo actually is

This part is worth thirty seconds, because it explains why some tools give you a file that "looks like" a Live Photo but never shows the LIVE badge.

A Live Photo is two files, not one:

  • a still image (HEIC or JPEG), and
  • a short movie (MOV).

They are joined by a shared identifier. The still carries a UUID in an Apple MakerNote tag, and the movie carries the same UUID under com.apple.quicktime.content.identifier. The movie also has a small metadata track called still-image-time that marks which frame of the video the still corresponds to.

iOS checks all three things. If any is missing, you get two separate items in your library — a photo and a video — instead of one Live Photo. Renaming a video to .mov, or putting the word "live" in the filename, does nothing at all.

This is also why the biggest Live Photo site on the web tells visitors that browsers "cannot produce a true Live Photo." They are describing their own limitation. Writing those three things is just byte manipulation, and it is what our converter does.

Method 1: In your browser (any computer, nothing uploaded)

  1. Open the video to Live Photo converter.
  2. Drop in your video. MP4 and MOV both work, H.264 or HEVC.
  3. Drag the slider to choose the cover frame — the frame Photos will show as the photo.
  4. Press Make Live Photo. It takes about a second; a 2 MB clip takes about eleven milliseconds.
  5. Download the two files, get them onto your iPhone, and save them to Photos.

Your video is never re-encoded. MP4 and MOV are the same kind of container, so the conversion changes four bytes in the file header and appends a nine-byte metadata sample. The picture quality is bit-identical to what you started with.

Because it all runs in the page, you can disconnect from the internet after the page loads and it still works. Nothing is uploaded, and there is no server holding your file.

Method 2: On the iPhone

If you would rather not move files around, several iOS apps do this — intoLive is the best known, and there are dozens of near-identical ones. They work, and the good ones write the metadata correctly.

What you give up: an install, usually a subscription or an ad, and the file leaves your hands. What you gain: the result lands in Photos directly, with no import step.

Method 3: On a Mac, from the command line

If you are comfortable in a terminal, makelive is a small MIT-licensed tool that takes a photo and a video and pairs them. You need a still that already exists, so you would export a frame first:

ffmpeg -ss 1.5 -i clip.mov -frames:v 1 still.jpg
makelive still.jpg clip.mov

This is a good option if you are processing a batch. For one file, the browser is faster.

How to tell it worked

Open Photos and look at the item.

  • One item with a LIVE badge in the corner — it worked. Press and hold to play it.
  • Two items, one photo and one video — the pairing did not take. The identifiers almost certainly do not match.

On a computer you can check the metadata directly with ExifTool:

exiftool -ContentIdentifier still.jpg clip.mov

Both files should print the same UUID. If the still prints nothing, it has no content identifier and iOS will never pair it.

Three things that will trip you up

Messaging apps strip the metadata. Sending the two files through WeChat, WhatsApp, Messenger or most chat apps will flatten them into an ordinary photo and an ordinary video. Use AirDrop, iCloud Drive or a USB cable instead.

AirDropping the pair does not always keep them together. If it arrives as two items, import them through the Files app instead: select both, then Share, then Save to Photos.

Length is not the problem you think it is. Plenty of guides say a Live Photo must be under three seconds. In our iOS 26.5 simulator test, 2.5, 5 and 10 second clips were all accepted. That does not guarantee every app will accept every length: WeChat Moments, for example, applies its own limit. Trim for the platform you plan to use, not because the Live Photo format itself demands three seconds.

What may not work as expected

An animated lock screen wallpaper. A Live Photo made from your own video plays normally in Photos, but some iOS versions may show "Motion not available" when you set it as a wallpaper. Wallpaper behavior depends on the iOS version and motion metadata in the source, so do not treat normal Live Photo playback as a guarantee that the lock screen will animate.

Most websites that accept images. Upload a Live Photo to a form and it normally takes just the still. If you need the motion somewhere, convert it to a video or a GIF first.

Questions

Do I need an iPhone to make one? No — you can build it on any computer and send it over. You only need an iPhone or iPad to view it as a Live Photo.

Does it keep the sound? The movie keeps whatever audio it had. If your source video has sound, the Live Photo will too.

Can I make a Live Photo from a photo? Not from a photo alone — there is no motion to put in the movie. You need at least a short clip. If you have a still and a video, you can pair them.

Will the quality drop? No. The movie is copied, not re-encoded. The still is written in place. Nothing is resized.