2009年3月8日日曜日

iPod touch 用の動画エンコード

VLC 1.0 以降に対応した版を公開しました。こちらは古い情報です。

VLC 0.8.6i をコマンドラインから動かして、iPod touch 用の動画を作成するための設定。主にテレビ番組の録画を想定していて、640x480でキャプチャしたムービーを iPod touch 用に変換します。画面の縦横比ごとに用意してあります。

4:3

#!/bin/bash
/Applications/VLC.app/Contents/MacOS/VLC $1 --sout "#transcode {vcodec=mp4v, vb=1536, canvas-aspect=1:1, width=430, height=320, acodec=mp4a, ab=128, deinterlace=enable}:standard {mux=mp4, url=$1.mp4, access=file}"

3:2

#!/bin/bash
/Applications/VLC.app/Contents/MacOS/VLC $1 --sout "#transcode {vcodec=mp4v, vb=1536, canvas-aspect=1:1, cropleft=16, cropright=16, croptop=34, cropbottom=38, width=480, height=320, acodec=mp4a, ab=128, deinterlace=enable}:standard {mux=mp4, url=$1.mp4, access=file}"

16:9

#!/bin/bash
/Applications/VLC.app/Contents/MacOS/VLC $1 --sout "#transcode {vcodec=mp4v, vb=1536, canvas-aspect=1:1, cropleft=4, cropright=8, croptop=60, cropbottom=60,  width=480, height=270, acodec=mp4a, ab=128, deinterlace=enable}:standard {mux=mp4, url=$1.mp4, access=file}"

ピクセルのアスペクト比まで厳密に合わせていないので、厳密に iPod touch でベスト、とは言い難いかもしれません…。もう少し調整が必要なように思います。

0 件のコメント:

コメントを投稿