Skip to content

Instantly share code, notes, and snippets.

@ezaurum
Created January 26, 2021 09:11
Show Gist options
  • Save ezaurum/942ab4a447479b363cba1b54d671bce9 to your computer and use it in GitHub Desktop.
Save ezaurum/942ab4a447479b363cba1b54d671bce9 to your computer and use it in GitHub Desktop.
M4A 파일 MP3로 일괄 변환
for m in *.m4a
do ffmpeg -v 5 -y -i $m -acodec libmp3lame -ac 2 -ab 192k "${m%.m4a}.mp3"
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment