compress-nodejs
v1.0.3
Published
The Compress NodeJS library provides access to the Compress API for encoding videos, restreamers
Downloads
22
Readme
Compress nodejs
The Compress NodeJS library provides access to the Compress API for encoding videos, restreamers
Table of Contents
Installation
You can install Compress Node.js using npm or yarn:
npm install compress-nodejs
# or
yarn add compress-nodejs
Usage
Here's a basic example of how to use Compress Node.js:
var apiKey = apiKeyInput.value;
var customerName = customerNameInput.value;
if (!apiKey) {
alert("Please enter an API Key");
return;
}
if (!customerName) {
alert("Please enter a Customer Name");
return;
}
window.tangram = new TangramClient(apiKey, customerName);
Check also example.js
and index.html
Contributing
We welcome contributions from the open-source community. To contribute to this project, please follow our Contribution Guidelines.
License
This project is licensed under the MIT License. You are free to use, modify, and distribute it as per the terms of the license.
For any questions or issues, please create an issue on GitHub.