Question / Help How do I record with lossless quality in OBS Studio

AtomicCraze

New Member
WITHOUT using the simple preset, I need to record my video in AVI but in the advanced tab it only showes MP4 MOV etc.. but no AVI. But when I record in simple mode it exports to AVI, help?

my2HJFK.png
 

Attachments

  • 2016-08-04 11-27-40.txt
    60.5 KB · Views: 39
for multiple audio tracks:
audio: aac 320 kbps (not lossless)
type: normal
container: mkv, mp4 or mov
x264: crf 0, preset ultrafast
in video settings set yuv format to nv12 (4:2:0) or I444 (4:4:4 - that's best quality but you need a fast hdd)

via ffmpeg (single audio line only):
type: custom ffmpeg
container: avi, codec: utvideo, audio codec pcm_s16le (wav - audio will be lossless)
in video settings use I420 (4:2:0) or RGB (true lossless but you need a VERY fast hdd)

for decoding utvideo you need the codec: http://umezawa.dyndns.info/archive/utvideo/
 
Top