Skip to content

Instantly share code, notes, and snippets.

@NuxRo
Created August 16, 2019 13:19
Show Gist options
  • Save NuxRo/d0ab40cd5a77764a391392d75812f1d3 to your computer and use it in GitHub Desktop.
Save NuxRo/d0ab40cd5a77764a391392d75812f1d3 to your computer and use it in GitHub Desktop.
Convert video files to be whatsapp compatible
#!/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