Hi,
I can send commands to my TRENDnet TV-IP410 camera using wget as follows:
wget --user=user --password=password http://192.168.1.140/cgi/admin/ptctrl.cgi?action=move\&Cmd=down
This would send the "down" command to tilt the camera. There are also "left", "right", etc. commands
What is the best way to do this in python? I could use os.sys, but is there a better way?
Thanks