2.0.5 • Published 4 years ago

cloudmersive-video-api-client v2.0.5

Weekly downloads
5
License
Apache-2.0
Repository
-
Last release
4 years ago

cloudmersive-video-api-client

CloudmersiveVideoApiClient - JavaScript client for cloudmersive-video-api-client The video APIs help you convert, encode, and transcode videos. Cloudmersive Video and Media Services API - Convert and encode video and media files and content between file formats. On-demand.

  • API version: v1
  • Package version: 2.0.5

Installation

For the Cloudmersive Video and Media Services API

npm

To publish the library as a npm, please follow the procedure in "Publishing npm packages".

Then install it via:

npm install cloudmersive-video-api-client --save
Local development

To use the library locally without publishing to a remote npm registry, first install the dependencies by changing into the directory containing package.json (and this README). Let's call this JAVASCRIPT_CLIENT_DIR. Then run:

npm install

Next, link it globally in npm with the following, also from JAVASCRIPT_CLIENT_DIR:

npm link

Finally, switch to the directory you want to use your cloudmersive-video-api-client from, and run:

npm link /path/to/<JAVASCRIPT_CLIENT_DIR>

You should now be able to require('cloudmersive-video-api-client') in javascript files from the directory you ran the last command above from.

git

If the library is hosted at a git repository, e.g. https://github.com/GIT_USER_ID/GIT_REPO_ID then install it via:

    npm install GIT_USER_ID/GIT_REPO_ID --save

For browser

The library also works in the browser environment via npm and browserify. After following the above steps with Node.js and installing browserify with npm install -g browserify, perform the following (assuming main.js is your entry file, that's to say your javascript file where you actually use this library):

browserify main.js > bundle.js

Then include bundle.js in the HTML pages.

Webpack Configuration

Using Webpack you may encounter the following error: "Module not found: Error: Cannot resolve module", most certainly you should disable AMD loader. Add/merge the following section to your webpack config:

module: {
  rules: [
    {
      parser: {
        amd: false
      }
    }
  ]
}

Getting Started

Please follow the installation instruction and execute the following JS code:

var CloudmersiveVideoApiClient = require('cloudmersive-video-api-client');

var defaultClient = CloudmersiveVideoApiClient.ApiClient.instance;

// Configure API key authorization: Apikey
var Apikey = defaultClient.authentications['Apikey'];
Apikey.apiKey = "YOUR API KEY"
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//Apikey.apiKeyPrefix['Apikey'] = "Token"

var api = new CloudmersiveVideoApiClient.AudioApi()

var opts = { 
  'inputFile': "/path/to/file.txt", // {File} Input file to perform the operation on.
  'fileUrl': "fileUrl_example", // {String} Optional; URL of an audio file being used for conversion. Use this option for files larger than 2GB.
  'bitRate': 56 // {Number} Optional; Specify the desired bitrate of the converted audio file in kilobytes per second (kB/s). Value may be between 48 and 1,411. By default, the optimal bitrate will be chosen automatically.
};

var callback = function(error, data, response) {
  if (error) {
    console.error(error);
  } else {
    console.log('API called successfully. Returned data: ' + data);
  }
};
api.audioConvertToAac(opts, callback);

Documentation for API Endpoints

All URIs are relative to https://api.cloudmersive.com

ClassMethodHTTP requestDescription
CloudmersiveVideoApiClient.AudioApiaudioConvertToAacPOST /video/convert/to/aacConvert Audio File to AAC format.
CloudmersiveVideoApiClient.AudioApiaudioConvertToM4aPOST /video/convert/to/m4aConvert Audio File to M4A format.
CloudmersiveVideoApiClient.AudioApiaudioConvertToMp3POST /video/convert/to/mp3Convert Audio File to MP3 format.
CloudmersiveVideoApiClient.AudioApiaudioConvertToWavPOST /video/convert/to/wavConvert Audio File to WAV format.
CloudmersiveVideoApiClient.VideoApivideoConvertToGifPOST /video/convert/to/gifConvert Video to Animated GIF format.
CloudmersiveVideoApiClient.VideoApivideoConvertToMovPOST /video/convert/to/movConvert Video to MOV format.
CloudmersiveVideoApiClient.VideoApivideoConvertToMp4POST /video/convert/to/mp4Convert Video to MP4 format.
CloudmersiveVideoApiClient.VideoApivideoConvertToStillFramesPOST /video/convert/to/still-framesConvert Video to PNG Still Frames.
CloudmersiveVideoApiClient.VideoApivideoConvertToWebmPOST /video/convert/to/webmConvert Video to WEBM format.
CloudmersiveVideoApiClient.VideoApivideoCutVideoPOST /video/cutCut a Video to a Shorter Length
CloudmersiveVideoApiClient.VideoApivideoGetInfoPOST /video/convert/get-infoGet detailed information about a video or audio file
CloudmersiveVideoApiClient.VideoApivideoResizeVideoPOST /video/resize/preserveAspectRatioResizes a Video Preserving the Original Aspect Ratio.
CloudmersiveVideoApiClient.VideoApivideoResizeVideoSimplePOST /video/resize/targetResizes a Video without Preserving Aspect Ratio.
CloudmersiveVideoApiClient.VideoApivideoScanForNsfwPOST /video/scan/nsfwScan a Video for NSFW content.
CloudmersiveVideoApiClient.VideoApivideoSplitVideoPOST /video/splitSplit a Video into Two Shorter Videos

Documentation for Models

Documentation for Authorization

Apikey

  • Type: API key
  • API key parameter name: Apikey
  • Location: HTTP header
2.0.5

4 years ago

2.0.4

4 years ago

2.0.3

4 years ago

2.0.2

4 years ago

2.0.1

4 years ago