Hello, I have been evaluating the use of Avi Processor for a project with strict timing requirements; Everything has been working well and I am impressed with the software thus far - However when writing an AVI file, No matter what VALID Compressor I choose - It always creates the AVI using the Microsoft Video 1 Codec.
This is a problem as my output is required to be at 29.97fps, and MV1 does'nt seem to be outputting that(although that could a different problem entirely). Is this a restriction of the trial version, or am I simply using the software incorrectly?
Development Environment:
Visual Studio 2003, C#
Code:
AviOUT.CreateNew("c:\\test.avi",1024,680,0);
AviOUT.FramesPerSecond = 29.97f;
AviOUT.CompressorHandler=(int)AviProcessor.CompressorHandlerConstants.XviDMpeg4Compressor;
AviOUT.Quality=7000;
AviOUT.Close();