0
私はIPカメラからライブストリームを取得しようとするためにAforgeライブラリを使用しています。私の問題は、フレームレートが遅すぎると約3または4秒ごとに約1つのフレームです!カメラをLANポート経由で直接コンピュータに接続しました。ここでAforgeを使用したIPカメラからのビデオフレームレートが低すぎるJpegstream C#
は私のコードです:
JPEGStream stream;
public Form1()
{
InitializeComponent();
stream = new JPEGStream("http://192.168.1.88/pda.cgi?user=myusername&password=mypass&page=image&cam=1");
stream.NewFrame += stream_NewFrame;
}
private void stream_NewFrame(object sender, NewFrameEventArgs eventArgs)
{
Bitmap bmp =(Bitmap)eventArgs.Frame.Clone();
pictureBox1.Image = bmp;
}
private void button5_Click_1(object sender, EventArgs e)
{
stream.Start();
}
private void button9_Click(object sender, EventArgs e)
{
stream.Stop();
}