ybod / untrunc

Restore a damaged (truncated) mp4, m4v, mov, 3gp video. Provided you have a similar not broken video.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Untrunc

Restore a damaged (truncated) mp4, m4v, mov, 3gp video. Provided you have a similar not broken video. And some luck. Also works the same way with audio like m4a.

You need:

  • Another video file which isn't broken
  • Libav 12
  • Basic ability to use a command line

Installing on CentOS 7

yum install https://extras.getpagespeed.com/release-el7-latest.rpm
yum install untrunc

Installing

Download the Libav sources from either the download page or its GitHub mirror:

wget https://libav.org/releases/libav-12.3.tar.xz
[or:  wget https://github.com/libav/libav/archive/v12.3.zip ]

Download the source code from GitHub at https://github.com/ponchio/untrunc

wget https://github.com/ponchio/untrunc/archive/master.zip

Unzip the Untrunc source code:

unzip master.zip

Unzip the Libav source code into the Untrunc source directory with either:

tar -xJf libav-12.3.tar.xz -C untrunc-master
[or:  unzip v12.3.zip -d untrunc-master ]

Go into the libav directory and build it:

cd untrunc-master/libav-12.3/
./configure
make
cd ..

Depending on your system you may need to install additional packages if configure complains about them. If configure complains about nasm/yasm not found, you can either install Nasm or Yasm or tell configure not to use a stand-alone assembler with --disable-yasm.

Build the untrunc executable:

g++ -o untrunc -I./libav-12.3 file.cpp main.cpp track.cpp atom.cpp mp4.cpp -L./libav-12.3/libavformat -lavformat -L./libav-12.3/libavcodec -lavcodec -L./libav-12.3/libavresample -lavresample -L./libav-12.3/libavutil -lavutil -lpthread -lz

Depending on your system and Libav configure options you might need to add extra flags to the command line:

  • add -lbz2 for errors like undefined reference to 'BZ2_bzDecompressInit',
  • add -llzma for errors like undefined reference to 'lzma_stream_decoder',
  • add -lX11 for errors like undefined reference to 'XOpenDisplay',
  • add -lvdpau for errors like undefined reference to 'VDPAU...',
  • add -ldl for errors like undefined reference to 'dlopen'.

On macOS add the following (tested on OSX 10.12.6):

  • add -framework CoreFoundation -framework CoreVideo -framework VideoDecodeAcceleration.

Mac OSX

Follow the above steps for "Installing on other operating system", but use the following g++ command:

g++ -o untrunc file.cpp main.cpp track.cpp atom.cpp mp4.cpp -I./libav-12.3 -L./libav-12.3/libavformat -lavformat -L./libav-12.3/libavcodec -lavcodec -L./libav-12.3/libavresample -lavresample -L./libav-12.3/libavutil -lavutil -lpthread -lz -framework CoreFoundation -framework CoreVideo -framework VideoDecodeAcceleration -lbz2 -DOSX

Arch package

Jose1711 kindly provides an arch package here: https://aur.archlinux.org/packages/untrunc-git/

Docker container

You can use the included Dockerfile to build and execute the package as a container

docker build -t untrunc .
docker run -v /path/to/files/:/files untrunc /files/working_video /files/broken_video

Using

You need both the broken video and an example working video (ideally from the same camera, if not the chances to fix it are slim).

Run this command in the folder where you have unzipped and compiled Untrunc but replace the /path/to/... bits with your 2 video files:

./untrunc /path/to/working-video.m4v /path/to/broken-video.m4v

Then it should churn away and hopefully produce a playable file called broken-video_fixed.m4v.

That's it you're done!

(Thanks to Tom Sparrow for providing the guide)

Help/Support

If you managed to recover the video, help me to find time to keep working on this software and make other people happy. If you didn't, I need more corrupted samples to improve the program and I might solve the issue, who knows... so write me.

Donations can be made at my page, http://vcg.isti.cnr.it/~ponchio/untrunc.php, and promptly converted into beer.

Thank you.

About

Restore a damaged (truncated) mp4, m4v, mov, 3gp video. Provided you have a similar not broken video.

License:GNU General Public License v2.0


Languages

Language:C++ 77.1%Language:C 21.3%Language:QMake 0.8%Language:Dockerfile 0.8%