Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Save into different folders the individual photos and the final image #155

Open
alopezbu opened this issue Jul 22, 2019 · 1 comment · May be fixed by #193
Open

Save into different folders the individual photos and the final image #155

alopezbu opened this issue Jul 22, 2019 · 1 comment · May be fixed by #193

Comments

@alopezbu
Copy link

Hi,
I would like to save in two different folders the individual shoots taken by the camera and in another different folder the final image of the photobooth. Is that possible? I don't know where can I change it.

Thank you very much

@reuterbal
Copy link
Owner

You can easily modify the different paths here:

# Picture list for assembled pictures
path = os.path.join(config.get('Storage', 'basedir'),
config.get('Storage', 'basename'))
basename = strftime(path, localtime())
self._pic_list = PictureList(basename)
# Picture list for individual shots
path = os.path.join(config.get('Storage', 'basedir'),
config.get('Storage', 'basename') + '_shot_')
basename = strftime(path, localtime())
self._shot_list = PictureList(basename)

@patkan patkan linked a pull request Oct 13, 2019 that will close this issue
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants