←back to thread

24 points painternishant | 2 comments | | HN request time: 0.621s | source

What we built

React Web Camera is a lightweight, reusable React component that allows users to capture multiple photos in one camera session, in-browser. It works across standard web apps, responsive UIs, and Progressive Web Apps (PWAs)—unlocking a smoother experience than the default <input type="file" capture> element.

The problem

On mobile (and increasingly on desktops), using: <input type="file" accept="image/*" capture="environment"> only allows taking one picture before the camera closes. Want to add more? You have to reopen it each time.

How React Web Camera solves it

Opens the camera inline in-browser, Lets the user capture multiple photos in one go, Allows previewing captured photos, removing unwanted ones, and submitting everything in a batch, Fully client-side, respects user privacy, Supported across web, responsive UIs, and installable PWAs.

1. mfkp ◴[] No.45042090[source]
Looks nice, and good demo. Maybe add a section to the site or the github showing browser support? I have some custom webcam capture stuff on my app but I need to make sure it works everywhere. Lastly, does it work with react native?
replies(1): >>45048907 #
2. painternishant ◴[] No.45048907[source]
Surely, we'll try to add browser support. Yes it does work with react-native. But you can always use camera native api while going with react-native.