// Open JPEG URL private void openJPEGURLToolStripMenuItem_Click(object sender, EventArgs e) { URLForm form = new URLForm( ); form.Description = "Enter URL of an updating JPEG from a web camera:"; form.URLs = new string[] { "http://195.243.185.195/axis-cgi/jpg/image.cgi?camera=1", }; if (form.ShowDialog(this) == DialogResult.OK) { // create video source JPEGStream jpegSource = new JPEGStream(form.URL); // open it OpenVideoSource(jpegSource); } }
// Open JPEG URL private void openJPEGURLToolStripMenuItem_Click( object sender, EventArgs e ) { URLForm form = new URLForm( ); form.Description = "Enter URL of an updating JPEG from a web camera:"; form.URLs = new string[] { "http://195.243.185.195/axis-cgi/jpg/image.cgi?camera=1", }; if ( form.ShowDialog( this ) == DialogResult.OK ) { // create video source JPEGStream jpegSource = new JPEGStream( form.URL ); // open it OpenVideoSource( jpegSource ); } }
// Open MJPEG URL private void openMJPEGURLToolStripMenuItem_Click(object sender, EventArgs e) { URLForm form = new URLForm( ); form.Description = "Enter URL of an MJPEG video stream:"; form.URLs = new string[] { "http://195.243.185.195/axis-cgi/mjpg/video.cgi?camera=4", "http://195.243.185.195/axis-cgi/mjpg/video.cgi?camera=3", }; if (form.ShowDialog(this) == DialogResult.OK) { // create video source MJPEGStream mjpegSource = new MJPEGStream(form.URL); // open it OpenVideoSource(mjpegSource); } }
// Open MJPEG URL private void openMJPEGURLToolStripMenuItem_Click( object sender, EventArgs e ) { URLForm form = new URLForm( ); form.Description = "Enter URL of an MJPEG video stream:"; form.URLs = new string[] { "http://195.243.185.195/axis-cgi/mjpg/video.cgi?camera=4", "http://195.243.185.195/axis-cgi/mjpg/video.cgi?camera=3", }; if ( form.ShowDialog( this ) == DialogResult.OK ) { // create video source MJPEGStream mjpegSource = new MJPEGStream( form.URL ); // open it OpenVideoSource( mjpegSource ); } }
// Open MJPEG URL private void openMJPEGURLToolStripMenuItem_Click(object sender, EventArgs e) { URLForm form = new URLForm(); form.Description = "Enter URL of an MJPEG video stream:"; form.URLs = new string[] {//predef form "http://10.7.6.19/axis-cgi/mjpg/video.cgi?resolution=640x480", "http://10.xx.yy.zz/axis-cgi/mjpg/video.cgi?resolution=640x480", "http://wc2.dartmouth.edu/axis-cgi/mjpg/video.cgi?resolution=640x480", }; if (form.ShowDialog(this) == DialogResult.OK) { // create video source MJPEGStream mjpegSource = new MJPEGStream(form.URL); // open it OpenVideoSource(mjpegSource); } }