You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Go to preferences and change the file format to vp8/webm, the temporary file from that can be used if something goes wrong with it half way.
If you have the .mp4 file but it's truncated. Get the header from that file and put it together with the .mux file. Use a program like "hexdump" to look for the "mdat" string. This was the end of the header in my video at byte 0x7d1 (2001)
Run this (kazam_zb8uew40.movie.mux is the name of the truncated .mux file) (dd count=1 bs=2001 if=/tmp/TruncatedVideo.mp4; cat ~/Videos/kazam_zb8uew40.movie.mux ) >/tmp/recovered.mp4
The .mux file looks like a .h264 file. If you run the example from https://linux.die.net/man/1/ffmpeg ffmpeg -i h264.mp4 -vcodec copy -vbsf h264_mp4toannexb -an out.h264
It'll create a .h264 file that has the same header. But unfortunately, I am unable to open aborted .mux files with anything.
Kazam needs a command line parameter to restart the encoding process from a .mux file.
Failure of encoding the final file happens when there isn't enough disk space, when the program crashes or when the computer is shutdown.
Without this, recordings are lost upon failure and there is no way to recover them.
The text was updated successfully, but these errors were encountered: