macOSでmp4動画を一括で回転させる方法

macOSでmp4動画を一括で回転させる方法

ffmpegのインストール

brew install ffmpeg



動画を90度回転させる

VIDEO_PATH="動画のあるフォルダパス"

cd "$VIDEO_PATH" || exit

for file in *.MP4; do
    output_file="rotated_$file"
    ffmpeg -i "$file" -vf "transpose=1" "$output_file"
done

-90度回転させたい場合はffmpeg -i “$file” -vf “transpose=2” “$output_file”のようにすればOK

Comments

No comments yet. Why don’t you start the discussion?

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です