mirror of
https://github.com/Tusko/vimeo-private-downloader.git
synced 2025-08-20 05:14:04 -07:00
upd readme
This commit is contained in:
parent
80f47b70fa
commit
38e9233ef7
2 changed files with 10 additions and 5 deletions
13
README.md
13
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`
|
||||
|
|
|
@ -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';
|
Loading…
Add table
Add a link
Reference in a new issue