From 38e9233ef7f8366da8006635e43be70dbcb6f8b0 Mon Sep 17 00:00:00 2001 From: Tusko Date: Fri, 20 Mar 2020 19:32:16 +0200 Subject: [PATCH] upd readme --- README.md | 13 ++++++++++--- runnner.sh | 2 -- 2 files changed, 10 insertions(+), 5 deletions(-) delete mode 100644 runnner.sh diff --git a/README.md b/README.md index 1d5b88e..24c23c4 100644 --- a/README.md +++ b/README.md @@ -6,6 +6,8 @@ Before you start, make sure you have installed [Node.js](https://nodejs.org/en/d To check it run in terminal `node -v`. You will see `v10.11.0` for example. If you get error, install latest [Node.js](https://nodejs.org/en/download/). +## Download + To download videos you have to: 1. Open the browser developer tools on the network tab (`F12` on Windows/Linux, `CMD + Option + I` on Mac OS). @@ -15,7 +17,12 @@ To download videos you have to: 5. Run: node vimeo-downloader.js 6. Wait for console output `🌈 List finished` -Also, you can combine the m4v and m4a files with [ffmpeg](https://www.ffmpeg.org/) +## Combine and convert -I've added an example bash script [runnner.sh](https://github.com/Tusko/vimeo-private-downloader/blob/master/runnner.sh) to bulk combine and conver video/audio parts to `mp4` file. -Enter your filenames in same format and run in terminal `sh ./runnner.sh` +To combine and convert video/audio parts to `mp4` file run in terminal `vimeo-combine.sh` and enjoy! + +### Contributors + +Special thanks to contributors: + +[@ftitreefly](https://github.com/ftitreefly/) - created bash script to merge videos/audio parts to `mp4` diff --git a/runnner.sh b/runnner.sh deleted file mode 100644 index f8cf358..0000000 --- a/runnner.sh +++ /dev/null @@ -1,2 +0,0 @@ -ffmpeg -i 'Introduction.m4v' -i 'Introduction.m4a' -c:v copy -c:a copy './converted/Introduction.mp4'; -ffmpeg -i 'Customer service.m4v' -i 'Customer service.m4a' -c:v copy -c:a copy './converted/Customer service.mp4'; \ No newline at end of file