ソースが C# の IP カメラから AForge を使用して記録機能を実行しようとしましたが、新しい学習者であるため、コーディングを本当に理解できません.記録されたビデオは、コンピューターに保存されます。
私が知っているように、この機能はビデオを作成/作成し、ストレージに保存することです。
AVIWriter writer = new AVIWriter("DIB ");
// create new AVI file and open it
writer.Open(@"C:\test.avi", 768, 576);
// create frame image
Bitmap image = new Bitmap(768, 576);
for (int i = 0; i < 240; i++)
{
// update image
image.SetPixel(i, i, Color.Red);
// add the image as a new frame of video file
writer.AddFrame(image);
}
writer.Close();
mjepg形式のソースファイル(IP cam)を読み込んでAVIWriterに渡すにはどうすればいいですか?誰かがそれを達成する方法について私にガイダンスを与えることができますか
新しい学習者、私を導いてください....