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
{{ message }}
This repository was archived by the owner on Nov 19, 2020. It is now read-only.
Hi! We are creating videos out of different numbers of videos, the frame rate and bit rate are changeable by the user but that is the default value. My issue is that we are using the 3.3 version before, which has a fix bit rate bug, but the quality of the video is acceptable, a bit grainy though. But after the update, even if we set the bit rate to 1500000, the quality is still pixelated and sometime blurry.
using (var vFWriter = new VideoFileWriter())
{
vFWriter.Open( path to image , 1080, 1960, 10, VideoCodec.H264, 800000);
}
the video resoltion is fixed to 1080x1960
the images that we are processing also have the same size.