qakmak
I just test new version. and there is have a lot problem
1.MP4_H264_SW_AAC mode and MP4_H264_CUDA_AAC upside down. I mean use MP4_H264_SW_AAC can use cuda.
2.start encrypted convert. MainDemo will let me input the encrypted code again, and if use cuda mode, will display another window (last version not have this )
3.multipe audio problem not fixed. when finish. there is have two audio stream, but it same.(all is audio stream0)
4.it's will slow and slow (cuda not this problem).
5.if use cuda it's quickly, but when almost complete , it's stop. and can't finish convert.(convert file can't open)
6. I give you test file for test,the address is:
https://www.dropbox.com/s/y6ewszrbtouuuqf/Test%20Files.rar
and change your VideoEdit .4.0 Winform Demo line 130 to this:
if (cbInsertAfterPreviousFile.Checked)
{
VideoEdit1.Input_AddVideoFile(s, -1, -1, -1, VFVideoEditStretchMode.Letterbox, tbSpeed.Value / 100.0);
VideoEdit1.Input_AddAudioFile(s, -1, -1, -1, s, 0, 0, tbSpeed.Value / 100.0);
VideoEdit1.Input_AddAudioFile(s, -1, -1, -1, s, 1, 1, tbSpeed.Value / 100.0);
}
else
{
VideoEdit1.Input_AddVideoFile(s, -1, -1, Convert.ToInt32(edInsertTime.Text), VFVideoEditStretchMode.Letterbox, tbSpeed.Value / 100.0);
VideoEdit1.Input_AddAudioFile(s, -1, -1, Convert.ToInt32(edInsertTime.Text), s, 0, 0, tbSpeed.Value / 100.0);
VideoEdit1.Input_AddAudioFile(s, -1, -1, Convert.ToInt32(edInsertTime.Text), s, 1, 1, tbSpeed.Value / 100.0);
}
on June 07, 2013 12:13