|
Yes, I tried the mentioned code in your demo (C# Multimedia Convert Project (VS2005))
Actually my Source is an .mkv file and I want to convert its portion in .avi ang .mpeg formats.
Considering the following lines of code, One thing that I observed is :
ltmmConvert.SelectionStart = 2.0;
ltmmConvert.SelectionEnd = 7.0;
ltmmConvert.StartConvert();
When the source is .avi the converted .mpeg file is of 5 sec duration.
When the source is .mpeg the converted .avi file is of 5 sec duration.
But when the source is .mkv the converted .avi file is of 56 sec duration
And converting it to .mpeg raises exception and code exits. WHY?
According to my understanding the captured portion of converted file should be of 5 secs starting from the second sec to the seventh sec of the source.
The version of LTMM15.DLL is 15.1.0.025
|