File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ howdy (2.2.2) xenial; urgency=medium
2+
3+ * Fixed fetching of wrong config section (thanks @halcyoncheng and @arifeinberg!)
4+
5+ -- boltgolt <boltgolt@gmail.com> Fri, 11 May 2018 10:43:03 +0200
6+
17howdy (2.2.1) xenial; urgency=medium
28
39 * Added mechanism to keep config files between updates
Original file line number Diff line number Diff line change 8282video_capture = cv2 .VideoCapture (int (config .get ("video" , "device_id" )))
8383
8484# Force MJPEG decoding if true
85- if config .get ("debug " , "force_mjpeg" ) == "true" :
85+ if config .get ("video " , "force_mjpeg" ) == "true" :
8686 video_capture .set (cv2 .CAP_PROP_FOURCC , 1196444237 )
8787
8888# Request a frame to wake the camera up
Original file line number Diff line number Diff line change 2121video_capture = cv2 .VideoCapture (int (config .get ("video" , "device_id" )))
2222
2323# Force MJPEG decoding if true
24- if config .get ("debug " , "force_mjpeg" ) == "true" :
24+ if config .get ("video " , "force_mjpeg" ) == "true" :
2525 video_capture .set (cv2 .CAP_PROP_FOURCC , 1196444237 )
2626
2727# Let the user know what's up
You can’t perform that action at this time.
0 commit comments