Hi, is it possible to capture a picture from a camera-Que?
Situation is the following:
- I am solo player – no technician. I’m on stage. I have the MacPro backstage and it is controlled via Qlab-Remote.
- I have a camera (Iphonecamera/syphon with Airbeam) on stage filming. This is projected live with a beamer.
- At a definite moment I want to “Capture” (I hope this the right word.. I want to “take a picture”) from this live stream and use it later on.
Or in other words: while playing and having the camera on stage live on screen, I want to take a picture (for example jpg..) from this life-Stream and use this picture few minutes later on the screen.
Thanks for any input on this :-)
--
Contact support anytime: sup...@figure53.com
Follow QLab on Twitter: https://twitter.com/QLabApp
User Group Code of Conduct: https://qlab.app/code-of-conduct/
---
You received this message because you are subscribed to the Google Groups "QLab" group.
To unsubscribe from this group and stop receiving emails from it, send an email to qlab+uns...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/qlab/40b07a47-58cc-419c-aa50-6a6fdf7fd9a3n%40googlegroups.com.
--requires a pre existing video cue numbered "STILL" with surface set for your display
set theDisplaynumber to 2 --set to number of display or projector for frame capture
set theFolder to "~/Desktop/screencapture/"
set thepath to path to home folder as Unicode text
do shell script ("mkdir -p " & theFolder)
set theInstruction to "screencapture -x "
repeat with display from 1 to theDisplaynumber
set theInstruction to theInstruction & theFolder & display & ".png "
end repeat
do shell script theInstruction
tell application id "com.figure53.QLab.4" to tell front workspace
delay 0.5
set the file target of cue "STILL" to (thepath & "Desktop:screencapture:" & (theDisplaynumber as string) & ".png")
end tell
This uses the shell command screencapture to screenshot all displays and then selects the image you want as the file target for a preexisting Video cue numbered "STILL" (option -x stops the capture sound effect playing)
If you don't know the display number of your projector then do a normal screenshot with command shift 3 and look at the numbers in brackets on the file names of the image files on your desktop,
This method has the advantage of targeting a cue to an actual image, and is also easily expanded to any number of framestore files and corresponding cues by duplicating the script cue and changing the cue number of the cue whose file target is changed and the file that is targeted e.g.
--requires a pre existing video cue numbered "STILL1" with surface set for your display
set theDisplaynumber to 2 --set to number of display or projector for frame capture
set theFolder to "~/Desktop/screencapture/"
set thepath to path to home folder as Unicode text
do shell script ("mkdir -p " & theFolder)
set theInstruction to "screencapture -x "
repeat with display from 1 to theDisplaynumber
set theInstruction to theInstruction & theFolder & display & "A.png "
end repeat
do shell script theInstruction
tell application id "com.figure53.QLab.4" to tell front workspace
delay 0.5
set the file target of cue "STILL1" to (thepath & "Desktop:screencapture:" & (theDisplaynumber as string) & "A.png")
end tell
Demo Screen recording and workspace attached
Mic