First, try repairing the recovered videos by rebuilding their file structure using a reference clip recorded with the same app/settings, since the issue is likely missing or damaged metadata rather than full data loss. Make sure the files aren’t overwritten and test them in VLC after any repair attempt to confirm playback. If you need a straightforward way to do this, you could try video repair tools from Remo Software and EaseUS, as it’s designed specifically for fixing unplayable recovered MP4 files like yours.
Corrupted MP4 Files
I have an application called Medal which saves clips from games. I have saved various funny and memorable moments with myself and with friends so they mean a lot to me. One day I was trying to transfer the files to a larger drive. I made a dumb mistake and deleted the original folder thinking I had copied all of the files into the new folder and I didn't and without realizing I emptied my recycling bin.
For a while I went through some trials and tribulations and used a free software that recovered my files, however whenever I play them they aren't playing. I downloaded VLC and used some other applications and websites to fix them as well but none of them worked.
I just want some help to figure out how to get them back and working. Preferably I would like a free method to fix my problem, but if something requiring a payment is necessary then I will proceed with that.
Windows for home | Windows 11 | Files, folders, and storage
2 answers
Sort by: Most helpful
-
Francisco Montilla 30,260 Reputation points Independent Advisor2025-11-20T02:17:02.1866667+00:00 Hi Bryce, I know how painful this feels.
The most effective first fix for recovered MP4s that will not play is to rebuild their missing header using an open source tool called
untrunc. It repairs MP4s by borrowing a clean header from a short good clip recorded with the same app and settings. Here is exactly how to do it on Windows.Open Medal and record a few seconds with the same game and the same recording settings you used for the lost clips. Keep this file safe. Name it
good.mp4.Now get
untruncfor Windows from its official GitHub releases, then extract it to a simple folder such asC:\Tools\untrunc. Putgood.mp4and one of your broken files in that same folder. Always work on copies of the recovered files, not the originals.Now open Windows Terminal or Command Prompt, cd to that folder, then run this command exactly:
untrunc.exe good.mp4 broken.mp4If it works, you will see a new file alongside the original with a repaired header that should open in Movies and TV or VLC. If you have many files, you can repeat the command for each one. To speed that up you can use this simple loop:
for %f in ("C:\Recovered*.mp4") do C:\Tools\untrunc\untrunc.exe C:\Tools\untrunc\good.mp4 "%f"That will attempt a repair on every MP4 in
C:\Recoveredusing yourgood.mp4as the template.A few quick tips while you do this:
- Only try to repair files that are a realistic size for a clip. If a file is a few kilobytes, there is no video data left to salvage. If a file is hundreds of megabytes,
untrunchas a good chance. - Do not save anything new to the drive the clips were deleted from. Writing new data can overwrite pieces the recovery tool already found, which makes repairs impossible.
- Always verify by opening the repaired file in a player and scrubbing around. If audio works but video does not, or vice versa, try a second short reference clip from Medal using the exact same resolution and encoder option as before.
If
untruncreports that it cannot find usable video or audio streams, that usually means the recovery tool pulled back fragments only. In that case the next step would be a deeper pass with an open source carver and then a different repair path. Tell me what happens withuntruncand I will guide you to the next best move. - Only try to repair files that are a realistic size for a clip. If a file is a few kilobytes, there is no video data left to salvage. If a file is hundreds of megabytes,