Answer the question
In order to leave comments, you need to log in
What is the best format to save a long lecture that is images from a presentation plus speaker audio?
That is, in fact, these are static images that occasionally replace each other, and a sound track. Conditionally 100 slides + sound for 2 hours.
Focus on small size. And it is desirable that it is not too difficult to run and view on any device.
Answer the question
In order to leave comments, you need to log in
Use an MP4 container, H.264 codec, but do not specify a bitrate for compression, but use CRF. Something around 25-30 should be enough. The higher the number, the worse the quality, but the smaller the size.
This command encodes a video with good quality, using slower preset to achieve better compression:https://trac.ffmpeg.org/wiki/Encode/H.264
ffmpeg -i input.avi -c:v libx264 -preset slow -crf 22 -c:a copy output.mkv
In my opinion, MPEG4 (H264) compresses static video well. If earlier cameras wrote to disk using motion detection to save space, now you can write continuously and this will not greatly increase the file size. The video format is good in that there frames are always tied to video tracks (time synchronization).
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question