我当前正在使用Microsoft Expression Encoder创建个人桌面录制程序。但是,创建视频文件时,将其另存为.xesc文件,我知道您可以在Expression Encoder软件中进行转换,但是我想知道是否有任何方法可以通过编程方式来做到这一点?
到目前为止,这是我的代码:
private void ScreenCap()
{
job = new ScreenCaptureJob();
Size workingArea = SystemInformation.PrimaryMonitorSize;
Rectangle captureRect = new Rectangle(0, 0, workingArea.Width, workingArea.Height);
job.CaptureRectangle = captureRect;
job.CaptureMouseCursor = true;
job.AddAudioDeviceSource(AudioDevices());
job.OutputPath = @"C:\Users\Public\Videos";
job.Start();
}