chen-gloria / leftover-to-recipe

🦄 Build Together AI Hackathon 2024 Canberra Winning team 🏆 - 🌎 Make the world better by turning your leftover ingredients into delectable meals, minimising food waste, and simplifying meal decisions!
https://leftover-to-recipe-380643b48bf7.herokuapp.com/
MIT License
3 stars 0 forks source link

mobile device default camera #31

Open YidingQiu opened 4 weeks ago

YidingQiu commented 4 weeks ago

Thank you, Gloria! The deployment runs fluently. Wonderful!! One issue is that it will call the front camera by default when it runs on my phone's browsers. Using a front camera may be inconvenient for users. Change line 12 in the camera.js from navigator.mediaDevices.getUserMedia({ video: true }) to: navigator.mediaDevices.getUserMedia({video: { facingMode: { ideal: 'environment' } }}) may use the rear camera on the device if applicable.

chen-gloria commented 3 weeks ago

Issue detected!