@echo off rem 音声ファイルを.m4a(AAC)に変換 chcp 65001 setlocal enabledelayedexpansion set x=%* for %%i in (!x!) do ( ffmpeg.exe -i %%i "%%~di%%~pi%%~ni.m4a" )