added package.json scripts | upd readme

This commit is contained in:
Tusko 2021-02-06 11:37:41 +02:00
parent 5b9c4de395
commit 3f3e69b102
3 changed files with 29 additions and 2 deletions

View file

@ -14,12 +14,12 @@ To download videos you have to:
2. Start the video (or move mouse over the video). 2. Start the video (or move mouse over the video).
3. In the "Network" tab, locate the load of the "master.json" file, copy its full URL. 3. In the "Network" tab, locate the load of the "master.json" file, copy its full URL.
4. Fill in `url` and `name`(using as filename) fields in `videojson.js` file 4. Fill in `url` and `name`(using as filename) fields in `videojson.js` file
5. Run: `node vimeomaster.js` 5. Run: `node index.js` or `npm run start`
6. Wait for console output `🌈 List finished` 6. Wait for console output `🌈 List finished`
## Combine and convert ## Combine and convert
To combine and convert video/audio parts to `mp4` file run in terminal `sh vimeo-combine.sh` and enjoy! To combine and convert video/audio parts to `mp4` file run in terminal `sh vimeo-combine.sh` or `npm run combine` and enjoy!
### Contributors ### Contributors

27
package.json Normal file
View file

@ -0,0 +1,27 @@
{
"name": "vimeodownload",
"version": "1.0.0",
"description": "Node.js script helps you to download private videos from Vimeo",
"main": "index.js",
"scripts": {
"start": "node ./index.js",
"combine": "sh vimeo-combine.sh",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tusko/vimeo-private-downloader.git"
},
"keywords": [
"vimeo",
"private",
"video",
"download"
],
"author": "Tusko Trush <tusko@trush.email>",
"license": "WTFPL",
"bugs": {
"url": "https://github.com/Tusko/vimeo-private-downloader/issues"
},
"homepage": "https://github.com/Tusko/vimeo-private-downloader#readme"
}