Jon Taylor commited on
Commit
8354b1a
1 Parent(s): fcfd230

changed camera w and h to match buffer

Browse files
Files changed (1) hide show
  1. app/bot.py +2 -2
app/bot.py CHANGED
@@ -84,8 +84,8 @@ class DailyVision(EventHandler):
84
  def setup_camera(self, video_frame):
85
  if not self.__camera:
86
  self.__camera = Daily.create_camera_device("camera",
87
- width = video_frame.width,
88
- height = video_frame.height,
89
  color_format="RGBA")
90
  self.__client.update_inputs({
91
  "camera": {
 
84
  def setup_camera(self, video_frame):
85
  if not self.__camera:
86
  self.__camera = Daily.create_camera_device("camera",
87
+ width = 640,
88
+ height = 480,
89
  color_format="RGBA")
90
  self.__client.update_inputs({
91
  "camera": {