File tree 3 files changed +8
-2
lines changed
3 files changed +8
-2
lines changed 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 <
[email protected] > Fri, 11 May 2018 10:43:03 +0200
6
+
1
7
howdy (2.2.1) xenial; urgency=medium
2
8
3
9
* Added mechanism to keep config files between updates
Original file line number Diff line number Diff line change 82
82
video_capture = cv2 .VideoCapture (int (config .get ("video" , "device_id" )))
83
83
84
84
# Force MJPEG decoding if true
85
- if config .get ("debug " , "force_mjpeg" ) == "true" :
85
+ if config .get ("video " , "force_mjpeg" ) == "true" :
86
86
video_capture .set (cv2 .CAP_PROP_FOURCC , 1196444237 )
87
87
88
88
# Request a frame to wake the camera up
Original file line number Diff line number Diff line change 21
21
video_capture = cv2 .VideoCapture (int (config .get ("video" , "device_id" )))
22
22
23
23
# Force MJPEG decoding if true
24
- if config .get ("debug " , "force_mjpeg" ) == "true" :
24
+ if config .get ("video " , "force_mjpeg" ) == "true" :
25
25
video_capture .set (cv2 .CAP_PROP_FOURCC , 1196444237 )
26
26
27
27
# Let the user know what's up
You can’t perform that action at this time.
0 commit comments