Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/mirkovw/wspace-upload-tool
- Owner: mirkovw
- License: mit
- Created: 2021-04-20T11:19:33.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-06-04T11:22:46.000Z (over 2 years ago)
- Last Synced: 2024-10-05T09:53:41.779Z (about 1 month ago)
- Language: JavaScript
- Size: 4.29 MB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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)
}
})();
```