Skip to content

Instantly share code, notes, and snippets.

@elijahtsai
Created February 16, 2021 03:10
Show Gist options
  • Save elijahtsai/55db1209fe07e7c11d0c133efaf60707 to your computer and use it in GitHub Desktop.
Save elijahtsai/55db1209fe07e7c11d0c133efaf60707 to your computer and use it in GitHub Desktop.
ffmpeg webm to m4a
#!/bin/zsh
mkdir f a
for i in *.webm
do
ffmpeg -i "$i" -write_xing 0 -c:a alac "f/${i:r}.m4a"
afconvert -v -f m4af -d aac@48000 "f/${i:r}.m4a" "a/${i:r}.m4a"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment