Controlling Panasonic Shutters

827 views
Skip to first unread message

Christopher Blair

unread,
Sep 18, 2017, 9:36:27 PM9/18/17
to QLab
For the past couple of years I've been using a program called Projector MIDI Remote as a way to control the shutters on Panasonic projectors through QLab. Unfortunately, when I looked to download it onto a new machine, I found that the website is no longer operating. Does anyone know either how to download the program or another program that can do the same thing?

Thanks

http://www.halfdanj.dk/projectorremote/

Gunther J. Kibelkstis

unread,
Sep 19, 2017, 10:53:09 AM9/19/17
to QLab
Cristopher
Use Script Cue:


ON PROJETOR


set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"

do shell script "curl -L " & "http://admin1:pana...@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a13d0103" & " -o " & myFile


OFF PROJETOR


set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"

do shell script "curl -L " & "http://admin1:pana...@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a13d0203" & " -o " & myFile


OPEN LENS


set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"

do shell script "curl -L " & "http://admin1:pana...@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a1910203" & " -o " & myFile


CLOSE LENS


set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"

do shell script "curl -L " & "http://admin1:pana...@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a1910103" & " -o " & myFile


IMPORTANT:

IN THE SCRIPT PLACE THE PROJECTOR'S  IP AND PASSWORD IF THERE IS.

NORMALLY THE PANASONIC STANDARD PASSWORD IS: ADMIN1

COPY THE SCRIPT AND PLACE IN THE SCRIPT CUE OF THE QLAB.

micpool

unread,
Sep 19, 2017, 11:38:57 AM9/19/17
to QLab
If using more than one projector scripting shutter controls can be problematic. You may find that executing a script to shutter 1 projector might disrupt the video going to others. Similarly using a timed shutter on newer Panasonic projectors to fade to absolute black might have a similar problem

Things improve if you run the script in a separate process but you still might get a glitch.

Stephen Harrison

unread,
Sep 21, 2017, 2:57:04 PM9/21/17
to QLab
I use ProjectorManager - https://itunes.apple.com/gb/app/projectormanager/id950244656?mt=12

Works like a charm, provides projector/lamp status, and has really simple AppleScript commands.

coax...@gmail.com

unread,
Sep 21, 2017, 6:52:29 PM9/21/17
to QLab
Hi I'm using this exact curl script to turn on/off a Panasonic projector. It works perfectly. I have 115 of cat5e cable running to the projector from our A/V cart. But is it true that this script only works with older OSs? I'm still on Yosemite and I'm worry about updating the OS for fear that it might mess things up.



On Tuesday, September 19, 2017 at 7:53:09 AM UTC-7, Gunther J. Kibelkstis wrote:
Cristopher
Use Script Cue:


ON PROJETOR


set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"

do shell script "curl -L " & "http://admin1:panasonic@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a13d0103" & " -o " & myFile


OFF PROJETOR


set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"

do shell script "curl -L " & "http://admin1:panasonic@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a13d0203" & " -o " & myFile


OPEN LENS


set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"

do shell script "curl -L " & "http://admin1:panasonic@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a1910203" & " -o " & myFile


CLOSE LENS


set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"

do shell script "curl -L " & "http://admin1:panasonic@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a1910103" & " -o " & myFile

micpool

unread,
Sep 21, 2017, 7:51:02 PM9/21/17
to QLab
I don't think there is any reason it shouldn't work with all OSs.

You can try other OSs by installing them on an extrrnal drive and using that to boot with before committing to updating your primary drive.


Mic



On Thursday, September 21, 2017 at 11:52:29 PM UTC+1, coax...@gmail.com wrote:
> Hi I'm using this exact curl script to turn on/off a Panasonic projector. It works perfectly. I have 115 of cat5e cable running to the projector from our A/V cart. But is it true that this script only works with older OSs? I'm still on Yosemite and I'm worry about updating the OS for fear that it might mess things up.
>
>
>
> On Tuesday, September 19, 2017 at 7:53:09 AM UTC-7, Gunther J. Kibelkstis wrote:
> Cristopher
> Use Script Cue:
>
>
>
>
>
>
> ON PROJETOR
>
>
>
>
> set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"
>
> do shell script "curl -L " & "http://admin1:pana...@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a13d0103" & " -o " & myFile
>
>
>
>
> OFF PROJETOR
>
>
>
>
> set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"
>
> do shell script "curl -L " & "http://admin1:pana...@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a13d0203" & " -o " & myFile
>
>
>
>
> OPEN LENS
>
>
>
>
> set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"
>
> do shell script "curl -L " & "http://admin1:pana...@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a1910203" & " -o " & myFile
>
>
>
>
> CLOSE LENS
>
>
>
>
> set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"
>
> do shell script "curl -L " & "http://admin1:pana...@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a1910103" & " -o " & myFile

Pete Reeve

unread,
Oct 25, 2017, 9:19:29 AM10/25/17
to QLab
I own two DW750's and control their shutter / powerup via artnet from Qlab 3... The free version is enough as there are only two fixtures.


On Friday, September 22, 2017 at 9:51:02 AM UTC+10, micpool wrote:
I don't think there is any reason it shouldn't work with all OSs.

You can try other OSs by installing them on an extrrnal drive and using that to boot with before committing to updating your primary drive.


Mic



On Thursday, September 21, 2017 at 11:52:29 PM UTC+1, coax...@gmail.com wrote:
> Hi I'm using this exact curl script to turn on/off a Panasonic projector. It works perfectly. I have 115 of cat5e cable running to the projector from our A/V cart. But is it true that this script only works with older OSs? I'm still on Yosemite and I'm worry about updating the OS for fear that it might mess things up.
>
>
>
> On Tuesday, September 19, 2017 at 7:53:09 AM UTC-7, Gunther J. Kibelkstis wrote:
> Cristopher
> Use Script Cue:
>
>
>
>
>
>
> ON PROJETOR
>
>
>
>
> set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"
>
> do shell script "curl -L " & "http://admin1:panasonic@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a13d0103" & " -o " & myFile
>
>
>
>
> OFF PROJETOR
>
>
>
>
> set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"
>
> do shell script "curl -L " & "http://admin1:panasonic@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a13d0203" & " -o " & myFile
>
>
>
>
> OPEN LENS
>
>
>
>
> set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"
>
> do shell script "curl -L " & "http://admin1:panasonic@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a1910203" & " -o " & myFile
>
>
>
>
> CLOSE LENS
>
>
>
>
> set myFile to (POSIX path of (path to temporary items)) & "curl_downloaded_file.xml"
>
> do shell script "curl -L " & "http://admin1:panasonic@192.168.0.3/cgi-bin/sd95.cgi?cm=0200a1910103" & " -o " & myFile
Reply all
Reply to author
Forward
0 new messages