diff --git a/README.md b/README.md index 6e9bf3f..01f14d0 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/vimeomaster.js b/index.js similarity index 100% rename from vimeomaster.js rename to index.js diff --git a/package.json b/package.json new file mode 100644 index 0000000..48c8b34 --- /dev/null +++ b/package.json @@ -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 ", + "license": "WTFPL", + "bugs": { + "url": "https://github.com/Tusko/vimeo-private-downloader/issues" + }, + "homepage": "https://github.com/Tusko/vimeo-private-downloader#readme" +}