
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
CameraKit helps you add reliable camera to your app quickly. Our open source camera platform provides consistent capture results, service that scales, and endless camera possibilities.
With CameraKit Web you are able to effortlessly do the following:
CameraKit Web as the name suggests, is our camera platform for websites. In addition to Web, we provide our camera interface on the following platforms:
| Browser | Preview | Pictures | Recording |
|---|---|---|---|
| Desktop Chrome | ✅ | ✅ | ✅ |
| Android Chrome | ✅ | ✅ | ✅ |
| Firefox | ✅ | ✅ | ✅ |
| Edge | ✅ | ✅ | ✅ |
| Desktop Safari | ✅ | ✅ | ✅ |
| Mobile Safari | ✅ | ✅ | ✅ |
Install the camerakit package.
$ npm install camerakit
Import and use camerakit in your project.
import camerakit from "camerakit";
Or, alternatively, you can import via a script tag:
<script src="path/to/camerakit.min.js"></script>
<!-- You can now access `camerakit` from the global scope -->
For additional Safari requirements, see Safari support details.
async function () {
const devices = await camerakit.getDevices();
const preview = await camerakit.createCaptureStream({
audio: devices.audio[0],
video: devices.video[0]
});
preview.setResolution({width: 1920, height: 1080});
const myPicture = preview.shutter.capture();
preview.recorder.start();
// Wait...
// Pause the recording & resume
await preview.recorder.pause();
await preview.recorder.start();
// Wait some more...
const recordedVideo = await preview.recorder.stop(); // Use the video yourself
preview.recorder.downloadLatestRecording(); // Download the video direct from browser
// Stop using camera
preview.destroy();
// Play video via camerakit player
const player = new camerakit.Player();
player.src = window.URL.createObjectURL(recordedVideo);
// Use the video player wherever you want!
document.getElementById("your-player-container").appendChild(player);
player.play();
}
Currently, the WebAssembly and JS worker files used for video recording and playback on Safari must be hosted seperately on a webserver. The compiled files can be found in dist/browser/, ensure they're accessible via a public URL (e.g https://myurl.com/myWorkerFile.js).
If you'd like to host the wasm/worker files in a custom path, you'll need to update the base param on camerakit.Loader and as well as to fallbackConfig when calling createCaptureStream:
import camerakit from "camerakit";
async function () {
// Point fallback video player to correct directory
camerakit.Loader.base = "/webm";
const myStream = await camerakit.createCaptureStream({
video: ...,
audio: ...,
fallbackConfig: {
base: "/webm" // Point fallback recorder
}
});
}
camerakit| Name | Parameters | Return | Description |
|---|---|---|---|
camerakit.getDevices | none | Promise<{audio: Array<MediaSource>, video: Array<MediaSource>}> | Returns available media devices for streaming |
camerakit.createCaptureStream | {audio?: MediaSource, video?: MediaSource, fallbackConfig?: Partial<FallbackConfig>} | Promise<CaptureStream> | Creates new CaptureStream instance with provided media inputs |
camerakit.enableStorage | {method?: "localStorage" | "sessionStorage" | null} | void | Enables photo storage as a default |
camerakit.disableStorage | none | void | Disables photo storage as a default |
camerakit.enableDebug | none | void | Enables debug mode for logging output |
camerakit.disableDebug | none | void | Disables debug mode |
| Name | Type |
|---|---|
camerakit.Player | Player |
camerakit.Loader | Loader |
CaptureStream| Name | Parameters | Return | Description |
|---|---|---|---|
stream.init | none | Promise<void> | Initializes stream and requests permissions from browser |
stream.setResolution | {width?: number, height?: number, aspect?: number, source?: "original" | "preview"} | Promise<void> | Sets the video resolution of the specified source |
stream.setSource | {audio?: MediaSource, video?: MediaSource, source?: "original" | "preview"} | Promise<void> | Overrides original media inputs for specified source |
stream.getPreview | {source?: "original" | "preview"} | HTMLVideoElement | Returns an video element with the appropriate internal event handlers |
stream.getMediaStream | {source?: "original" | "preview"} | Promise<MediaStream> | Returns raw MediaStream for use in video display |
stream.destroy | none | void | Closes all open streams and cancels capture |
| Name | Type |
|---|---|
stream.shutter | Shutter |
stream.recorder | Recorder |
ShutterUsed for taking photos of the CaptureStream.
| name | Parameters | Return | Description |
|---|---|---|---|
shutter.capture | {source?: "original" | "preview", save?: "localStorage" | "sessionStorage" | null} | string | Takes and returns picture from specified source |
shutter.captureAndDownload | {source?: "original" | "preview", filename?: string} | boolean | Calls capture and creates file download from result |
shutter.downloadLatestCapture | filename?: string | boolean | Downloads the last picture taken |
RecorderUsed for recording video of the the CaptureStream.
| name | Parameters | Return | Description |
|---|---|---|---|
recorder.start | {source?: "original" | "preview"} | Promise<void> | Starts the recording from the specified source |
recorder.stop | none | Promise<?Blob> | Stops the recording and returns a completed video file |
recorder.pause | none | Promise<void> | Pauses the recording until resumed with recorder.start() |
recorder.getLatestRecording | none | ?Blob | Returns last recorded video file |
recorder.downloadLatestRecording | filename?: string | boolean | Creates file download from last video recording |
recorder.setMimeType | mimeType: string | boolean | Sets the video recording mime type for all sources |
PlayerA player following the HTMLVideoElement spec. Reccomended for playback as it can serve as a fallback for browsers that don't natively support webm.
Example:
const player = new camerakit.Player();
player.src = window.URL.createObjectURL(/* Your video Blob */);
player.play();
player.pause();
player.muted = true;
player.width = 1920;
player.height = 1080;
// Restart video playback
player.stop();
player.currentTime = 0;
player.play();
NOTE: If your browser supports the exported video, creating a Player instance will return a vanilla HTMLVideoElement.
LoaderExposed OGVLoader.
FallbackConfigNOTE: All fields are optional:
{
base: string; // Base directory for wasm/worker files
width: number;
height: number;
bitrate: number;
framerate: number;
}
CameraKit Web is MIT License
FAQs
CameraKit for web and javascript projects.
We found that camerakit demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.