Results 1 to 10 of 13

Thread: Building a photo booth that can be left unattended.

  • Thread Tools
    • Show Printable Version
    • Subscribe to this Thread…
  • Display

Hybrid View

  1. #1
    looklook
    looklook is offlineJunior Member
    Join Date
    Mar 2012
    Posts
    6

    Building a photo booth that can be left unattended.

    Hi there,

    I've built a few booths, and now I'm going to build a booth that stays in one place (in a Bar) for the first time.

    I was hoping for help with a few points...

    - Can a computer be set to automatically start the software if it's unplugged and then plugged back in (say a cleaner pulls the plug out).

    - I won't be using Live View, but the camera will be on standby all the time, any suggestions on the best camera(It'll need to have a power supply and able to connect to a flash)?

    - Thought I'd connect a simple coin mech to a circuit that activates an arcade button, has anyone done this?

    Any help would be much appreciated, and if you thing there are any other issues I should consider.

    Thanks

    Darran
    Last edited by looklook; November 7th, 2012 at 09:14 PM.
    Reply With Quote Reply With Quote

  2. #2
    jfreeman1412
    jfreeman1412 is offlineSenior Member
    Join Date
    Jan 2011
    Posts
    107

    Default

    Yes all that is possible....Research it and you will find what you are looking for.

    I would like to add on other feature that would be nice for this kind of setup and that would be a start and a a stop time. So say you drop the booth at, at an event that you do not need an attendant and you want it to start at 7 and stop at 10. I just bought a Digital Centre booth and it has the ability to do that. Thought it would be a good integration into the software. Although I am sure you can write a script to do so.
    Reply With Quote Reply With Quote

  3. #3
    Chris Breeze is offlineAdministrator
    Join Date
    Jan 2005
    Posts
    5,732

    Default

    QuoteOriginally Posted by looklook View Post
    Hi there,

    I've built a few booths, and now I'm going to build a booth that stays in one place (in a Bar) for the first time.

    I was hoping for help with a few points...

    - Can a computer be set to automatically start the software if it's unplugged and then plugged back in (say a cleaner pulls the plug out).

    - I won't be using Live View, but the camera will be on standby all the time, any suggestions on the best camera(It'll need to have a power supply and able to connect to a flash)?

    - Thought I'd connect a simple coin mech to a circuit that activates an arcade button, has anyone done this?

    Any help would be much appreciated, and if you thing there are any other issues I should consider.

    Thanks

    Darran
    You should be able to get the PC to boot automatically when the power is turned on using BIOS settings. There should be an advanced power management section in the BIOS with a setting similar to this: Restore from AC power loss [always off | always on | last state]

    You could then add a shortcut to the photobooth software in the Windows Startup folder to run it automatically when the computer boots. Alternatively you could run a script if there are several things that need to be done at startup.

    This page shows how to interface a simple coin acceptor:
    http://www.breezesys.com/articles/ph...n_acceptor.htm
    Reply With Quote Reply With Quote

  4. #4
    looklook
    looklook is offlineJunior Member
    Join Date
    Mar 2012
    Posts
    6

    Default Thanks

    Thanks for the help guys, I'll give it a try!
    Reply With Quote Reply With Quote

  5. #5
    rpvincent is offlineMember
    Join Date
    Jan 2008
    Posts
    34

    Default Timer hack

    I agree that it would be cool to be able to program the start and stop time because we will frequently have a delivery driver setup a booth at a wedding that isn't scheduled to "open" until about 2 hours into the event.

    It would be really cool if an hour:minute countdown could be displayed on the "booth currently closed" screen so guests would know exactly when it's time to jump in.

    I have one of my booths setup in a photographer's studio and we have most of the booth's functionality shut down while their offices are closed by using a standard plug-in timer switch. You could just have that connected to the camera AC adapter and then use the "check camera connection" screen as your "booth closed" screen.

    I also really like the token system that digital centre came up with where you could have a booth at a venue permanently and the venue would buy tokens from you for $50-$100 each which would activate the booth for the next hour (or some other selectable time period). 3 tokens would make it active for the next 3 hours...just like a parking meter. They sell the service to their client directly and you don't even need to show up!
    Reply With Quote Reply With Quote

  6. #6
    jayredliner
    jayredliner is offlineMember
    Join Date
    Jan 2012
    Posts
    41

    Default

    Interesting thread. I'm being asked for this more and more.

    Often people are looking for a semi-permanent, or weekly rental. Currently I only offer rentals with an attendant.

    Anyone have this implemented?
    Reply With Quote Reply With Quote

  7. #7
    Chris Breeze is offlineAdministrator
    Join Date
    Jan 2005
    Posts
    5,732

    Default

    QuoteOriginally Posted by rpvincent View Post
    I agree that it would be cool to be able to program the start and stop time because we will frequently have a delivery driver setup a booth at a wedding that isn't scheduled to "open" until about 2 hours into the event.

    It would be really cool if an hour:minute countdown could be displayed on the "booth currently closed" screen so guests would know exactly when it's time to jump in.

    I have one of my booths setup in a photographer's studio and we have most of the booth's functionality shut down while their offices are closed by using a standard plug-in timer switch. You could just have that connected to the camera AC adapter and then use the "check camera connection" screen as your "booth closed" screen.

    I also really like the token system that digital centre came up with where you could have a booth at a venue permanently and the venue would buy tokens from you for $50-$100 each which would activate the booth for the next hour (or some other selectable time period). 3 tokens would make it active for the next 3 hours...just like a parking meter. They sell the service to their client directly and you don't even need to show up!
    Here's a simple script which turns the booth on at a set time and then puts it into standby mode at the end of the time period:
    Code:
    #SingleInstance force
    SetTitleMatchMode,2
    
    ; Booth start and end times in 24 hour HHMM format e.g. use 1930 for 7:30pm
    StartTime = 2000
    EndTime = 2230
    
    ; loop forever monitoring the status of the photobooth screen
    Loop
    {
            IfWinExist, Breeze Systems Photobooth
            {
                    now = %A_Hour%%A_Min%
                    WinGetTitle, Title, Breeze Systems Photobooth
                    if Title contains welcome.jpg
                    {
                            if (BoothOn())
                            {
                                    ControlSend,,{F6},Breeze Systems Photobooth
                                    Sleep 5000      ; allow time for booth to start
                            }
                    }
                    else if Title contains ready.jpg
                    {
                            if (!BoothOn())
                            {
                                    ControlSend,,{F6},Breeze Systems Photobooth
                                    Sleep 5000      ; allow time for booth to switch to standby
                            }
                    }
            }
            else
            {
                    Ready = 0
            }
            Sleep 1000      ; sleep for 1 sec to avoid hogging the processor
    }
    
    BoothOn()
    {
            global StartTime, EndTime
            now := A_Hour . A_Min
            if (now >= StartTime and now 
                        
    You could promote the booth by running a movie which loops continuously when in standby mode by naming it welcome.mov. The script could be extended to show a countdown timer to show when the booth will be ready. You could also modify the script use a coin acceptor which only accepts special tokens to enable prepaid sessions. Another way to do it is to charge per print and use the photobooth_log.ahk script to keep a record of the number of prints.
    Reply With Quote Reply With Quote

  8. #8
    Professorlooney
    Professorlooney is offlineJunior Member
    Join Date
    May 2012
    Posts
    14

    Default Scripts

    I am not a pc person, so i would like to know how and where to make this cript as i need to set up booth to start at a given time. Any help would be great.
    Reply With Quote Reply With Quote

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •