
Security News
Attackers Are Hunting High-Impact Node.js Maintainers in a Coordinated Social Engineering Campaign
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.
@creatomate/preview
Advanced tools
Render video and image previews in your web app prior to creating a final MP4, GIF, JPEG or PNG through the API.
The Preview SDK lets you display video and image previews in your web app prior to creating a final MP4, GIF, JPEG or PNG through the API. This is useful when developing a web-based editing or customizer tool, and want to show a real-time rendering in the browser.
This package is for browser-based apps, and it works with any framework such as React, Angular, Vue, as well as plain Javascript. For creating videos and images using Node.js, refer to the creatomate library instead, a different NPM package that can be found here.
Creatomate is a media generation API for editing and rendering videos and images using code. The platform uses templates and JSON for generating MP4, GIF, JPEG or PNG files. All processing is handled by Creatomate's cloud infrastructure, so you do not need to maintain your own servers.
Install the package using the following command:
npm install @creatomate/preview
You can now load a video template (or JSON) as follows:
import { Preview } from '@creatomate/preview';
// The following assumes that you have a HTML element like this: <div id="container"></div>
const containerElement = document.getElementById('container');
// Initialize a preview to be spawned within the container
const preview = new Preview(containerElement, 'player', 'YOUR_VIDEO_PLAYER_TOKEN');
// Once the SDK is ready, load a template from the project
preview.onReady = async () => {
await preview.loadTemplate('YOUR_TEMPLATE_ID');
// You can also load a video from JSON:
// await preview.setSource({ /* Your JSON here */ });
};
Check out the demo code provided below for a more comprehensive example.
See the Preview SDK in action here: Video Preview Demo
Because live video rendering is very demanding on the device's hardware, this library only works on modern desktop web browsers, such as Chrome, Firefox, Edge, Opera, and Safari. Mobile devices are not supported. Render an MP4 preview through the API to support smartphone devices. Tip: Use the render_scale API parameter (10% to 100%) to generate a low-resolution preview without changing the composition or template.
Feel free to contact us if you encounter any issues with the library or Creatomate API at support@creatomate.com.
The Creatomate Preview SDK is licensed under the MIT license. Please refer to the LICENSE for more information.
FAQs
Render video and image previews in your web app prior to creating a final MP4, GIF, JPEG or PNG through the API.
The npm package @creatomate/preview receives a total of 6,970 weekly downloads. As such, @creatomate/preview popularity was classified as popular.
We found that @creatomate/preview 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
Multiple high-impact npm maintainers confirm they have been targeted in the same social engineering campaign that compromised Axios.

Security News
Axios compromise traced to social engineering, showing how attacks on maintainers can bypass controls and expose the broader software supply chain.

Security News
Node.js has paused its bug bounty program after funding ended, removing payouts for vulnerability reports but keeping its security process unchanged.