Share via

Corrupted MP4 Files

Bryce Valdespino 0 Reputation points
2025-11-20T01:28:31.1366667+00:00

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
0 comments No comments

2 answers

Sort by: Most helpful
  1. Steven 0 Reputation points
    2026-04-24T15:03:32.5633333+00:00

    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.

    0 comments No comments

  2. Francisco Montilla 30,260 Reputation points Independent Advisor
    2025-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 untrunc for Windows from its official GitHub releases, then extract it to a simple folder such as C:\Tools\untrunc. Put good.mp4 and 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.mp4
    

    If 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:\Recovered using your good.mp4 as 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, untrunc has 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 untrunc reports 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 with untrunc and I will guide you to the next best move.


Your answer

Answers can be marked as 'Accepted' by the question author and 'Recommended' by moderators, which helps users know the answer solved the author's problem.