Noname China IP Camera (IPQY 1080p) - jandelgado/general GitHub Wiki

I recently got one of those cheap china IP cameras (labelled IPQY-1080P w/ wifi/lan, 1080p, optional sd card storage, USB powered). Like so often, the firmware of the device is rather poor, e.g. the web frontend needs flash to be installed - inacceptable.

video stream

Video can be streamed with ffmpeg or vlc:

  • ffplay rtsp://admin:admin@<ip>:554/11
  • vlc rtsp://admin:admin@<ip>:554/11

The second video stream is available under rtsp://admin:admin@<ip>:554/12.

remote control

The camera seems to implement the cgi-http-interface described here:

To move he camera use for example the following commands:

  • move-left: curl http://admin:admin@<ip>/web/cgi-bin/hi3510/ptzctrl.cgi?-step=0&-act=left
  • move-up: curl http://admin:admin@<ip>/web/cgi-bin/hi3510/ptzctrl.cgi?-step=0&-act=up
  • stop movement: curl http://admin:admin@<ip>/web/cgi-bin/hi3510/ptzctrl.cgi?-step=0&-act=stop
  • etc. (use left, right, up, down, home, stop).