Is a contemporary open source implementation of photobooth software intended for use on a classic Van Gogh 'arcade' photobooth hardware, retrofitted with modern upgrades, such that:
The original
are all retained, but the
are updated in line with more modern standards.
The computer is upgraded to modern windows (we use Windows 7), a modern printer (we use
After being enticed by the decorative exterior to enter the photobooth and sit down, the user is presented with a non-touchscreen interface of the original screen, joystick and two buttons labelled "Ok" and "Back".
The user presses "Ok" while the take_photos panel is highlighted as available. A countdown begins. The user is shown a live video feed of the camera. When the countdown reaches zero, the current camera output is captured and the on-screen counter is decremented. When the counter reaches zero, the photos that were taken appear and a timer to printing completion is displayed along with the words "Time till completion".
The user is presented with options to select to publish the photos publicly on social media, if they select it then they are prompted to use an on-screen keyboard to enter their social media ID for that network. Once it is entered, the photos are posted from the configured account and targeted at that user by way of mention.
Rembrandt uses
To operate the equipment and interface with the user.
Specifically, a daemon (installed and running as a windows service) operates as monitor of the chrome instance that runs the user interface, and also monitors the serial port for incoming button presses and joystick movements, decoding and storing them for retrieval by the front-end. The daemon launches the web browser and provides web content to it via a local HTTP server, along with a json messaging service to notify of hardware events such as coin insert and button presses.
It stores all photos on a private S3 bucket and only publishes them to public social media upon the request of the user, and each time from the same accounts configured in the json configuration file.
The configuration file comes with all settings read and used from the file already set to a default value.
Follow these steps, in order...
Firstly install your operating system. Install window 10 64-bit Enterprise with the following options:
You must manually install:
You need to clone this repo via the command prompt:
cd Desktop
git clone https://github.com/grumpyoldgit/rembrandt.git
cd rembrandt
Then you need to install the modules that are needed for rembrandt to work. They are in the package.json file, and npm will install them for you by issuing the command:
npm install .
via the command line in the rembrandt directory that you moved into above.
Finally, you need to allow rembrandt to use the webcam on google chrome, so that users aren't prompted each time if they want to open the camera. To do that we use group policy as follows:
Confirm that the setting has loaded into chrome by visiting chrome://policy
You can test the installation without the serial interface using the following command:
node index.js test.serial
Allow access in the firewall dialog that pops up when the node application starts.
You can launch rembrandt with the following command:
node index.js
When new code is available on github in this repo, you can get the latest changes with two simple commands, executed in the rembrandt directory:
git pull
npm install .
The manual for the original system is here http://www.segaarcade.com/__assets__/GamePDFs/Games/00093/van-gogh-manual.pdf it outlines the original system, hardware and ownership and maintenance procedures.