web-dev-qa-db-ja.com

字幕をサポートしているMacOSでmplayerをコンパイル/インストールする方法は?

これは この質問 へのフォローアップ質問です:

MacOS 10.13.6でサブタイトルファイル付きのビデオファイルを再生するには:字幕を使用できるようにmplayerをインストールする方法(コマンドラインバージョンのmplayerを使用する場合)。

補遺

私は他の投稿でなされた提案に従いました:

brew uninstall mplayer
brew reinstall freetype
brew reinstall fontconfig
brew install --build-from-source mplayer

最後のコマンドはエラーを引き起こしました:

Error: Xcode alone is not sufficient on High Sierra.
Install the Command Line Tools:
  xcode-select --install

だから私はCommand Line Toolsをインストールしました。次に、mplayerinstallコマンドを繰り返しました。次の構成行でインストールされました。

./configure --cc=clang --Host-cc=clang --disable-cdparanoia --prefix=/usr/local/Cellar/mplayer/1.3.0 --disable-x11

次に、次のようにコマンドを実行します

mplayer  testvideo.mkv  -sub SubTest.srt

SubTest.srtの内容は次のとおりです。

1
00:00:00,000 --> 00:00:05,000
<font face="Arial" size="50" color="#425aa0"><b>TEST TEXT</b></font>

字幕もエラーも表示されません。

brew info mplayerの出力は次のとおりです。

mplayer: stable 1.3.0 (bottled), HEAD
UNIX movie player
https://mplayerhq.hu/
/usr/local/Cellar/mplayer/1.3.0 (11 files, 28.8MB) *
  Built from source on 2019-01-11 at 07:40:20
From: https://github.com/Homebrew/homebrew-core/blob/master/Formula/mplayer.rb
==> Dependencies
Build: yasm ✔
Optional: libcaca ✘, libdvdnav ✘, libdvdread ✘
==> Options
--with-libcaca
    Build with libcaca support
--with-libdvdnav
    Build with libdvdnav support
--with-libdvdread
    Build with libdvdread support
--HEAD
    Install HEAD version
==> Analytics
install: 1,198 (30 days), 3,569 (90 days), 15,129 (365 days)
install_on_request: 1,140 (30 days), 3,408 (90 days), 14,307 (365 days)
build_error: 0 (30 days)

他に何を試すことができますか?私はむしろ仮想ボックスをインストールして使用したくありません...

2
Alex

ある程度機能した手順は次のとおりです。

  1. Brewでmpvをインストールします。そのツールを使用すると、字幕付きのビデオを見ることができます。
  2. しかし、そのインストールはmplayeravconvを壊しました。
  3. mplayeravconvをアンインストールします
  4. mplayeravconvを再インストールします
0
Alex