web-dev-qa-db-ja.com

VLC forMacでオーディオトランスコーディングオプションがありません

Mac上のVLC(VideoLAN)v1.02の iPodビデオ変換ガイド をフォローしています。使用するオーディオトランスコーディングオプションを選択する必要があるセクションに到達しました。

IPod変換用の両方のオーディオフォーマットオプション、mp4aaacは単にそうではありません選択可能なオプションのリスト。誰かがその理由を知っていますか、そしてそれらを追加することが可能かどうか?

3
Alex Angas

VLCは、MacPortsを使用してMac10.6で正常にコンパイルされます。また、必要なライブラリを含め、バリアントをインストールしてVLCをポン引きするためのある程度の余裕があります。

$ port variants vlc
VLC has the variants:
   bonjour: Enable Bonjour support
   darwin_10: Platform variant, selected automatically
   dvb: enable DVB Program Specific Information support
   fribidi: Enable FriBidi Unicode support
     * requires osd
   full: Enable all variants except x11 and no_*
     * requires huge qt4 smb
   huge: Enable all variants except x11, qt4, smb and no_*
     * conflicts with minimal
     * requires dvb fribidi live555 sdl shout speex svg vcd
   live555: Enable Live555 streaming media support
   macosx: Platform variant, selected automatically
   minimal: VLC Mac OS X minimal configuration
[+]mod: Enable MOD demuxer support
[+]mpc: enable Musepack Decoder library support
   no_dvd: disable DVD and DeCSS support
   no_ffmpeg: disable FFmpeg support
[+]osd: Enable onscreen display and TrueType font support
   qt4: Build using QT4 UI.  This will use qt4-x11 if +x11 and qt4-mac otherwise.
   sdl: Enable SDL/SDL-Image support
   shout: Enable Shoutcast support
   smb: Enable Samba 3 support
   speex: Enable Speex decoder support
   svg: Enable SVG support
[+]theora: Enable OggTheora support
[+]twolame: Enable MPEG Audio Layer 2 encoding
   vcd: Enable VCD support
   x11: Build support for X11
[+]x264: Enable H.264 en/decoding

だから単に発行:

$ Sudo port install vlc +huge

(そして、更新/アップグレードすることで、最新のリリースとの同期を維持できます)

3
meduz

オーディオ形式を選択する前に、適切なコンテナ形式(MP4)を選択しましたか?

私はまた見ました VLCフォーラムでのこの7月の議論 不足しているAACエンコーダーについて。 VLCはFFmpegを使用します。FFmpegはAACエンコーディングに FAAC(libfaac) を使用します。フォーラムのスレッドによると、当時のVLCビルドにFAACを含めることができなかったライセンスの問題があります。これがまだ当てはまるかどうかは確認できません。これが問題である場合は、 自分でコンパイル して、不足している機能を提供するビルドを取得できます。

0
quack quixote