Uploaded August 2025 | Updated September 2026, 1 hour ago
You might be able to save your video files! Here are some ways to try and piece corrupted files back together. Sometimes it's just a bad wrapper. Here are some things to try.
Method 1: I highly suggest trying EaseUS Restore first or EaseUS FIXO - it works really good! (no code required)
Method 2: try Wondershare Repairit
Method 3 is trying ffmpeg (a free simple app download)
ffmpeg method 1:
download ffmpeg
Put movie file in same folder as ffmpeg.exe
In the line of text below, replace "yourmovie.mp4" with the file name of your movie clip.
C:/ffmpeg/ffmpeg -err_detect ignore_err -i "yourmovie.mp4" -c copy "fioutput_fixed.mp4"
Copy this line of code
Navigate to the folder where ffmpeg.exe and your video file are.
When inside the folder, hold Shift + Right Click in an empty spot → choose “Open PowerShell window here” (or “Open command window here” depending on Windows). Paste the line of code and push ENTER to run the command. If it doesn't work, make sure your directory location is correct in the line of code ( C:/etc/)
When it works, a new file will be created. Try it out.
If it's no better, try replacing the wrapper with ffmpeg. Instead of asking ffmpeg to trust the MP4 container (which is broken), we force it to ignore the container and carve out the raw H.264 stream, then re-wrap that into a fresh MP4 or MOV.
Step 1. Extract the Raw Stream
This tells ffmpeg: “don’t bother decoding, just grab the H.264 video and AAC audio from the file.”
ffmpeg -i brokenfile.mp4 -c:v copy -c:a copy -map 0:v:0 -map 0:a:0 -f mpegts temp.ts
-c:v copy -c:a copy = no re-encode, just copy streams.
-f mpegts = forces a transport stream container (TS is very forgiving of errors).
temp.ts = the intermediate file with your raw video/audio streams.
Step 2. Rewrap into Clean MP4/MOV
Now take that “cleaned” stream and re-mux it into a standard MP4:
ffmpeg -i temp.ts -c copy output_fixed.mp4
This makes a new MP4 with fresh indexing and moov atom.
The corruption should be gone (or replaced by a short glitch/skip at worst).
Step 3. If Still Fails → Force Re-encode (last resort)
If the streams themselves are corrupted (rare), re-encode instead of copying:
ffmpeg -i brokenfile.mp4 -c:v prores -profile:v 3 -c:a pcm_s16le output_fixed.mov
Converts to Apple ProRes 422 video + uncompressed PCM audio.
Large files, but guaranteed smooth playback and Premiere compatibility.
This is the “nuclear option,” but it salvages footage almost every time.
I highly suggest trying EaseUS Restore first.
Subscribe and tell your friends about MarkusPix.
Who am I youtu.be/FsDLn9ySY9w
The Hollywood Movie I made youtu.be/w4q0_uSIOJw
Behind the scenes of my movie youtu.be/sbk3QaIQtKM
DVD of the movie I made markusproducts.com/shop/dvds/to-the-ends-of-time-movie.html
The Book Dreamchaser (behind the scenes of the making of the movie To the Ends of Time) markusproducts.com/shop/books/printed-books/dreamchaser-markus-rothkranz-autobiography.html
My 1994 movie "To the Ends of Time" streaming on Amazon markusproducts.com/shop/dvds/to-the-ends-of-time-movie.html
Our Health channel is http://www.thehealthylife.com
The Markus and Cara Instagram page is instagram.com/markusandcara
Cara's personal Instagram is instagram.com/iamcarabrotman
See photoshoot images of Cara at http://www.shortsillustrated.com
Thank Markus for his service- donate: paypal.me/ThankMarkus
You might be able to save your video files! Here are some ways to try and piece corrupted files back together. Sometimes it's just a bad wrapper. Here are some things to try.
Method 1: I highly suggest trying EaseUS Restore first or EaseUS FIXO - it works really good! (no code required)
Method 2: try Wondershare Repairit
Method 3 is trying ffmpeg (a free simple app download)
ffmpeg method 1:
download ffmpeg
Put movie file in same folder as ffmpeg.exe
In the line of text below, replace "yourmovie.mp4" with the file name of your movie clip.
C:/ffmpeg/ffmpeg -err_detect ignore_err -i "yourmovie.mp4" -c copy "fioutput_fixed.mp4"
Copy this line of code
Navigate to the folder where ffmpeg.exe and your video file are.
When inside the folder, hold Shift + Right Click in an empty spot → choose “Open PowerShell window here” (or “Open command window here” depending on Windows). Paste the line of code and push ENTER to run the command. If it doesn't work, make sure your directory location is correct in the line of code ( C:/etc/)
When it works, a new file will be created. Try it out.
If it's no better, try replacing the wrapper with ffmpeg. Instead of asking ffmpeg to trust the MP4 container (which is broken), we force it to ignore the container and carve out the raw H.264 stream, then re-wrap that into a fresh MP4 or MOV.
Step 1. Extract the Raw Stream
This tells ffmpeg: “don’t bother decoding, just grab the H.264 video and AAC audio from the file.”
ffmpeg -i brokenfile.mp4 -c:v copy -c:a copy -map 0:v:0 -map 0:a:0 -f mpegts temp.ts
-c:v copy -c:a copy = no re-encode, just copy streams.
-f mpegts = forces a transport stream container (TS is very forgiving of errors).
temp.ts = the intermediate file with your raw video/audio streams.
Step 2. Rewrap into Clean MP4/MOV
Now take that “cleaned” stream and re-mux it into a standard MP4:
ffmpeg -i temp.ts -c copy output_fixed.mp4
This makes a new MP4 with fresh indexing and moov atom.
The corruption should be gone (or replaced by a short glitch/skip at worst).
Step 3. If Still Fails → Force Re-encode (last resort)
If the streams themselves are corrupted (rare), re-encode instead of copying:
ffmpeg -i brokenfile.mp4 -c:v prores -profile:v 3 -c:a pcm_s16le output_fixed.mov
Converts to Apple ProRes 422 video + uncompressed PCM audio.
Large files, but guaranteed smooth playback and Premiere compatibility.
This is the “nuclear option,” but it salvages footage almost every time.
I highly suggest trying EaseUS Restore first.
Subscribe and tell your friends about MarkusPix.
Who am I youtu.be/FsDLn9ySY9w
The Hollywood Movie I made youtu.be/w4q0_uSIOJw
Behind the scenes of my movie youtu.be/sbk3QaIQtKM
DVD of the movie I made markusproducts.com/shop/dvds/to-the-ends-of-time-movie.html
The Book Dreamchaser (behind the scenes of the making of the movie To the Ends of Time) markusproducts.com/shop/books/printed-books/dreamchaser-markus-rothkranz-autobiography.html
My 1994 movie "To the Ends of Time" streaming on Amazon markusproducts.com/shop/dvds/to-the-ends-of-time-movie.html
Our Health channel is http://www.thehealthylife.com
The Markus and Cara Instagram page is instagram.com/markusandcara
Cara's personal Instagram is instagram.com/iamcarabrotman
See photoshoot images of Cara at http://www.shortsillustrated.com
Thank Markus for his service- donate: paypal.me/ThankMarkus










