Question / Help Mp4 Corruptions.

Zabbor

New Member
Is there any other more redundant format that still support layered audio?

I want to bash myself across the face each time i by mistake corrupt a file because of a full harddrive or closing obs before ending the recording.

Or is there any magical ways to save a obs mp4?
 

Harold

Active Member
Use Studio, MKV format if you need multi-track audio. Use FLV if you only need a single audio track.
 

Zabbor

New Member
Seems like MKV is the way to go, haven't been able to corrupt it.

I also use ffmpeg to change the mkv container to mp4 so i can edit the files.

This code will convert all the MKV files in the folder losslessly.

for %%a in ("*.mkv") do ffmpeg -i ^"%%a^" -c copy -map 0 %%~na.mp4
 
Top