Skip to content

Instantly share code, notes, and snippets.

@diogoko
Created October 8, 2023 21:26
Show Gist options
  • Save diogoko/9885e4a00595c6dca62d913fbb22f77a to your computer and use it in GitHub Desktop.
Save diogoko/9885e4a00595c6dca62d913fbb22f77a to your computer and use it in GitHub Desktop.
Shell aliases for ffmpeg commands

WAV to MP3

wav2mp3() {
  ffmpeg -i "$1" -vn -ar 44100 -ac 2 -b:a 192k "${1%.wav}.mp3"
}

MOV to MP4

mov2mp4() {
  ffmpeg -i "$1" -vcodec h264 -acodec mp2 "${1%.mov}.mp4"
}

Resize MOV

mov2small() {
  ffmpeg -i "$1" -filter:v scale=1280:-2 -c:a copy "${1}--small.mov"
}

MOV to GIF

mov2gif() {
  ffmpeg -i "$1" -pix_fmt rgb24 -r 10 "${1}--small.gif"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment