I watch ip camera via rstp address with VLC Player. I want to capture a picture from the video while watching.
Do you have any ideas on the subject?
Thank you..
Code: Select all
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace forum_gonder
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
axVLCPlugin21.playlist.add("rtsp://192.168.1.21:554/live0.264");
axVLCPlugin21.playlist.play();
}
private void button2_Click(object sender, EventArgs e)
{
}
}
}