Skip to content

Instantly share code, notes, and snippets.

@3lpsy
Last active October 13, 2020 21:39
Show Gist options
  • Save 3lpsy/c6b66ef216aec644398c0853e07bc183 to your computer and use it in GitHub Desktop.
Save 3lpsy/c6b66ef216aec644398c0853e07bc183 to your computer and use it in GitHub Desktop.
Convert a video (such as mkv) to twitter video.
#!/bin/sh
SRC="$1"
OUT="$2"
ffmpeg -i "$SRC" -acodec aac -vcodec copy "${OUT}.mp4"
@3lpsy
Copy link
Author

3lpsy commented Aug 14, 2020

Requirements for Twitter video: must be mp4 (or MOV) and aac audio codec.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment