** Step 1 **
Install ffmpeg with the vidstab plugin.
- OSX: Install via Homebrew -
brew install ffmpeg --with-libvidstab - Linux: download binaries here (vidstab included)
- Windows: download binaries here (vidstab included)
** Step 1 **
Install ffmpeg with the vidstab plugin.
brew install ffmpeg --with-libvidstab| #!/bin/bash | |
| # macOS Sierra TFTP Server Creator | |
| # Author Mertcan GÖKGÖZ - 07.05.2017 15:00 (GMT +3) | |
| # | |
| # Requirements | |
| # - Macos Sierra 10.12.4 and later | |
| # - 'homebrew' package manager | |
| # - brew install dialog | |
| # | |
| # How to use |
Transcoding FLAC music to Opus:
ffmpeg is a highly useful application for converting music and videos. However, audio transcoding is limited to a a single core. If you have a large FLAC archive and you wanted to compress it into the efficient Opus codec, it would take forever with the fastest processor to complete, unless you were to take advantage of all cores in your CPU.
parallel 'ffmpeg -v 0 -i "{}" -c:a libopus -b:a 128k "{.}.opus"' ::: $(find -type f -name '*.flac')
Transcoding Videos to VP9: