Advertisement
Guest User

Untitled

a guest
Aug 19th, 2018
248
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 1.78 KB | None | 0 0
  1. # Tumblr Setup
  2. # Replace the values with your information
  3. # OAuth keys can be generated from https://api.tumblr.com/console/calls/user/info
  4. consumer_key='CONSUMER_KEY' #replace with your key
  5. consumer_secret='CONSUMER_SECRET' #replace with your secret code
  6. oath_token='OATH_TOKEN' #replace with your oath token
  7. oath_secret='OATH_SECRET' #replace with your oath secret code
  8. tumblr_blog = 'TUMBLR_BLOG' # replace with your tumblr account name without .tumblr.com
  9. tagsForTumblr = "MyTagsHere" # change to tags you want, separated with commas
  10.  
  11. #Config settings to change behavior of photo booth
  12. monitor_w = 800    # width of the display monitor
  13. monitor_h = 480    # height of the display monitor
  14. file_path = '/home/pi/anotherPhotoBooth/pics/' # path to save images
  15. clear_on_startup = False # True will clear previously stored photos as the program launches. False will leave all previous photos.
  16. debounce = 0.3 # how long to debounce the button. Add more time if the button triggers too many times.
  17. post_online = True # True to upload images. False to store locally only.
  18. capture_count_pics = True # if true, show a photo count between taking photos. If false, do not. False is faster.
  19. make_gifs = True   # True to make an animated gif. False to post 4 jpgs into one post.
  20. hi_res_pics = False  # True to save high res pics from camera.
  21.                     # If also uploading, the program will also convert each image to a smaller image before making the gif.
  22.                     # False to first capture low res pics. False is faster.
  23.                     # Careful, each photo costs against your daily Tumblr upload max.
  24. camera_iso = 800    # adjust for lighting issues. Normal is 100 or 200. Sort of dark is 400. Dark is 800 max.
  25.                     # available options: 100, 200, 320, 400, 500, 640, 800
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement