ラベル AppleTV の投稿を表示しています。 すべての投稿を表示
ラベル AppleTV の投稿を表示しています。 すべての投稿を表示

2011年1月4日火曜日

HandBrake 0.9.5リリース 

ダウンロードはこちらから。 以下NEWSより抜粋。
Changes between 0.9.4 and 0.9.5:

* Core Library
  - BluRay disc structure support. (No decryption support) 
  - Updated Libraries (x264, ffmpeg) 
  - SSA Subtitle support. (Including burn-in) 
  - MP3 audio now supported in MP4 files (Note: Limited Player compatibility) 
  - VOBSUB subtitle now supported in MP4 files (Note: Limited Player compatibility) 
  - Updated Presets for newer devices and better quality 
  - AC3 encoding support.
  - Many Bug fixes and other small improvements
  - Improved DVD Main Feature detection (when using dvdnav)
  - Universal audio downmix support (all audio types can be downmixed)

*All GUIs
  - Updated x264 Advanced Panel
  - Video Quality Slider drops % value and only shows RF for x264
  - Batch Scan (Scan Multiple files at once. N.B: Does not include multiple VIDEO_TS folders / Image fil
es) 
  - Peak framerate option (Capped VFR)
  - Many Bug fixes
  - Many Tweaks to improve usability.
  - Ability to edit queue jobs
  - Point-to-Point encoding (second or frame start and end times)

* Mac GUI
  - New Audio Panel supporting >4 Audio Tracks
  - VLC detection in /Applications and ~/Applications

* Windows GUI
  - Encode Status in GUI. (CLI window is now always hidden)
  - Improved Auto-Naming for Destination file name.
  - Drag / Drop Video onto Main Window to scan.
  
* Linux GUI
  - Multiple instance support (run multiple copies of ghb at once)
  - Many Bug fixes and UI improvements. 
このバージョンからAppleTV2のプリセットが追加されている。録り貯めた動画をApple TV2で鑑賞するためには、AppleTV2用にエンコードし直す必要があるが、HandBrake 0.9.5はそれを簡単・確実にやってくれる。
GUIでやってもよいが、以下のようにバッチでやるのがおすすめだ。
for i in *.avi; do
HandBrakeCLI --preset "Apple TV2" -i $i -o ${i%.*}.m4v
done

2010年12月19日日曜日

HandBrakeCLIを自前でビルドする

CLI版でもAppleTV2のプリセットが使いたかったので、dev版を自前でビルド。 手順は以下のとおり。--disable-xcodeを付けることでCLI版をビルド出来るらしい。yasmが入っていれば問題ないと思う。
マトモなやり方はCompileGuideを参照。

svn co  svn://svn.handbrake.fr/HandBrake/trunk HandBrake
cd HandBrake
./configure --disable-xcode
make

こういうバッチ系処理はGUIでやりたくはないね。

2010年12月18日土曜日

HandBrakeのnightly版にAppleTV2のプリセットがある

HandBrakenightly版にはAppleTV2のプリセットが用意されている。
設定としては以下のような感じ。

  • FPSを29.97 (NTSC Video)   VFR On
  • Constant quality RF:20
  • Anamorphic Loose Modules:16(解像度は720pを超えない範囲で調整)
  • 音声はAACとAC3を乗せる。

FPSを29.97にしているところに肝がありそうだが詳細は不明。
0.9.5から使えるようになるのかな。