Google-code-prettify

2008/12/15

動画ファイルを回転する

ちょっとメモがわりに。

動画ファイルを回転させる方法を見つけました。
MEncoderを使います。
自分のUbuntuには既にインストールされていたのですが、MPlayerに含まれていたのでしょうか?


Windows Media video (WMVファイル)
$ mencoder -vf rotate=1 -ovc lavc -oac copy 1.wmv -o 2.wmv


RealMedia document (RMファイル)
うちの環境で試したファイルでは-oac copyだとエラーになってしまいました。
$ mencoder -vf rotate=1 -ovc lavc -oac pcm 1.rm -o 2.rm


mencoderのrotateオプションは次のように指定するみたいです。
manページからの引用です。
rotate[=<0-7>]
Rotates the image by 90 degrees and optionally flips it.
For values between 4-7 rotation is only done if the movie
geometry is portrait and not landscape.

0 Rotate by 90 degrees clockwise and flip (default).
1 Rotate by 90 degrees clockwise.
2 Rotate by 90 degrees counterclockwise.
3 Rotate by 90 degrees counterclockwise and flip.

0 件のコメント: