Created
August 16, 2019 13:19
-
-
Save NuxRo/d0ab40cd5a77764a391392d75812f1d3 to your computer and use it in GitHub Desktop.
Convert video files to be whatsapp compatible
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# drop it in ~/bin and install ffmpeg | |
# usage: convertwhatsapp.sh video.file | |
ffmpeg -i "$1" -strict -2 -c:v libx264 -c:a aac "whatsapp-$1.mp4" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment