mirror of
https://github.com/Tusko/vimeo-private-downloader.git
synced 2025-07-05 20:41:48 -07:00
added package.json scripts | upd readme
This commit is contained in:
parent
5b9c4de395
commit
3f3e69b102
3 changed files with 29 additions and 2 deletions
|
@ -14,12 +14,12 @@ To download videos you have to:
|
|||
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.
|
||||
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`
|
||||
|
||||
## 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
|
||||
|
||||
|
|
27
package.json
Normal file
27
package.json
Normal 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"
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue