(ver2)フォルダ内の全mp4ファイルを半分の解像度にして保存し、エラーがでなければ元のファイルをゴミ箱に入れるコマンドのbatファイル。更に、logとして出力もする

@echo off
for %%f in (.\*.mp4) do (
    ffmpeg -i "%%f" -vf scale=iw/2:-1 ".\%%~nf_half.mp4" 2>> conversion_errors.log
    IF NOT ERRORLEVEL 1 (
        del "%%f"
    )
)

(ver1)フォルダ内の全mp4ファイルを半分の解像度にして保存するコマンド

  • for %f in (.\*.mp4) do (ffmpeg -i "%f" -vf scale=iw/2:-1 ".\%~nf_half.mp4")