Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/mirkovw/wspace-upload-tool

Command line tool for uploading videos to specific review folders on workspace
https://github.com/mirkovw/wspace-upload-tool

Last synced: 28 days ago
JSON representation

Command line tool for uploading videos to specific review folders on workspace

Awesome Lists containing this project

README

        

# wspace-upload-tool
Command line tool for uploading videos to specific review folders on workspace

## Installation

```sh
npm install wspace-upload-tool
```

## Basic Usage
```js
const WorkspaceUpload = require('wspace-upload-tool');

( async () => {
const result = await WorkspaceUpload({
login: {
user: '[email protected]',
pass: 'password'
},
file: './video/video_1920x1080.mp4',
libraryId: '1234',
cookies: "./cookies.json",
});

if (result.success) {
console.log('All done')
} else {
console.log('Error: ' + result.error.reason)
}
})();
```