Raymond Norton cried from the depths of the abyss... > I am using lirc and a a usb attached IR blaster to control a camera > capable of panning to right, left, up and down. > > I can control it via irsend with the following commands: > > irsend send_once WL-V1 home > irsend send_once WL-V1 right > irsend send_once WL-V1 left > irsend send_once WL-V1 up > irsend send_once WL-V1 down > > I tried my hand at creating a php page for this (forgetting the commands > now) and was able to get it to respond to a single command. I need to > create a page that has a menu to use all the cameras functionality and > display the video output. > > Anyone have information on how to accomplish this via a php or html web > page? > I honestly have no experience with this, but I do a lot of PHP coding. You can call system commands from your .php script using the exec() function. http://php.net/manual/en/function.exec.php Since you have already figured it out from your shell, you simply exec(irsend send_once WL-V1 down); for example. As for the video, how is that hooked up? To a TV tuner card?