pi-timelapse icon indicating copy to clipboard operation
pi-timelapse copied to clipboard

How to edit the YAML?

Open pdhixenbaugh opened this issue 3 years ago • 2 comments

I'm trying to specify a resolution and a white balance, however whenever I try to do something other than the default { }, the program throws an exception. What is the proper way to modify the .yml so that it uses the individual values for resolution or for white balance?

pdhixenbaugh avatar Jul 25 '21 16:07 pdhixenbaugh

For resolution: resolution: { width: 1920, height: 1440 }

for white balance: white_balance: { red_gain: 1.3, blue_gain: 1.75 }

shantigilbert avatar Jul 27 '21 17:07 shantigilbert

Alternatively:

resolution:
  width: 1920
  height: 1440

white_balance:
  red_gain: 1.3
  blue_gain: 1.75

geerlingguy avatar Jul 27 '21 20:07 geerlingguy