Skip to content

Instantly share code, notes, and snippets.

@tatmos
Created June 10, 2020 23:57
Show Gist options
  • Save tatmos/78ddcc7940af05ea52cbaab3c3a772bc to your computer and use it in GitHub Desktop.
Save tatmos/78ddcc7940af05ea52cbaab3c3a772bc to your computer and use it in GitHub Desktop.
複数のm4a波形とかを16bit wav波形に変換するバッチファイル。 波形のあるフォルダにこのbatを置いて、outフォルダを作って、batを実行する。 あらかじめ、ffmpegのインストールとパス通しておく。
for %%f in (*.m4a) do (ffmpeg -i "%%~nf".m4a -acodec pcm_s16le -f wav ./out/"%%~nf".wav)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment