Posted: Sun Jul 18, 2010 10:23 pm Post subject: May i know how to solve the programming part of the CAMERA
Hello !!
Currently i'm doing final year project regarding the camera DCS-6620G but i encounter problem:
Before i using Camera AXIS207 and my GUI produce the video image but now my project task need to change another Camera Dlink DCS-6620G
I using C# programming and i research that in order to produce video image using D-Link DCS-6620G i need to have download DLL command in order to configure the C# programming .
Below is the code that i found on the the previous Camera AXIS 207, the bold and underline code ,i think is the main source of the code
Code:
//Stops possible streams
AMC1.Stop();
AMC1.AutoStart = true;
// Set the PTZ properties
AMC1.PTZControlURL = "http://" + IP_text +[b] [u]"/axis-cgi/com/ptz.cgi";[/[/u]b]
AMC1.UIMode = "ptz-absolute";
// Show the status bar and the tool bar in the AXIS Media Control
AMC1.ShowStatusBar = true;
AMC1.ShowToolbar = true;
AMC1.StretchToFit = true;
AMC1.EnableContextMenu = true;
AMC1.ToolbarConfiguration = "default,+ptz";
//ipText.Text = IP_text;
//IP_text = "172.16.156.119";
IP_text = "192.168.1.26";
// Set the media URL and the media type
AMC1.MediaURL = "http://" + IP_text + [i][u][b]"/axis-cgi/mjpg/video.cgi";[/b][/u][/i] AMC1.MediaType = "mjpeg";
// Start the download of the mjpeg stream from the Axis camera/video server
AMC1.Play();
I had try doing but unsuccessful so please help ME !!