示例#1
0
 private void mJPEGURLToolStripMenuItem_Click(object sender, EventArgs e)
 {
     this.flowLayoutPanelVlc.Visible    = false;
     this.flowLayoutPanelNormal.Visible = true;
     this.panelUrl.Visible  = true;
     this.labelTip.Text     = "请输入MJEPG URL";
     this.comboBoxUrls.Text = "";
     currentChoice          = LINKTYPE.MJPEG;
     string[] URLs = new string[]
     {
         "http://towercam.uu.edu/axis-cgi/mjpg/video.cgi"
     };
     comboBoxUrls.Items.Clear();
     comboBoxUrls.Items.AddRange(URLs);
 }
示例#2
0
 private void rTPSToolStripMenuItem_Click(object sender, EventArgs e)
 {
     this.flowLayoutPanelVlc.Visible    = true;
     this.flowLayoutPanelNormal.Visible = false;
     this.panelUrl.Visible  = true;
     this.labelTip.Text     = "请输入REPS URL";
     this.comboBoxUrls.Text = "";
     currentChoice          = LINKTYPE.RTPS;
     string[] URLs = new string[]
     {
         "rtsp://184.72.239.149/vod/mp4:BigBuckBunny_175k.mov"
     };
     comboBoxUrls.Items.Clear();
     comboBoxUrls.Items.AddRange(URLs);
 }
示例#3
0
 private void jPEGURLToolStripMenuItem_Click(object sender, EventArgs e)
 {
     this.flowLayoutPanelVlc.Visible    = false;
     this.flowLayoutPanelNormal.Visible = true;
     this.panelUrl.Visible  = true;
     this.labelTip.Text     = "请输入JEPG URL";
     this.comboBoxUrls.Text = "";
     currentChoice          = LINKTYPE.JPEG;
     string[] URLs = new string[]
     {
         "http://www.gtc.iac.es/multimedia/netcam/camaraExt.jpg",
         "http://217.168.94.131/axis-cgi/jpg/image.cgi?resolution=320x240"
     };
     comboBoxUrls.Items.Clear();
     comboBoxUrls.Items.AddRange(URLs);
 }