Skip to content

Instantly share code, notes, and snippets.

@DecentM
Last active August 14, 2022 11:26
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DecentM/3dbddbe8944804132e82880937e1a1c4 to your computer and use it in GitHub Desktop.
Save DecentM/3dbddbe8944804132e82880937e1a1c4 to your computer and use it in GitHub Desktop.
Convert videos with FFmpeg to VRChat video player friendly format
#!/bin/sh -e
ffmpeg -i "$1" -c:v h264 -b:v 5M -maxrate 9M -bufsize 1M -preset veryslow -movflags +faststart -pix_fmt yuv420p -c:a aac -ab 1536k -strict 2 -threads 8 "$2"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment