0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Panasonic DMR-BRX2000の動画再生機能で複数音声のmp4ファイルは最終トラックが優先される

Last updated at Posted at 2020-01-05

発生した問題

  1. 複数音声(主音声+副音声)が存在するDVDをHandbrakeで「--all-audio」オプションでmp4エンコードする。(mp4マルチオーディオ)
  2. DMR-BRX2000の「User_area」上でmp4ファイルを再生すると、最終音声トラックが再生される(DMR-BRX2000上では音声トラックを変更できなかった)。

解決策

「--all-audio」を使用せず、「--audio」オプションで手動で設定し、再生したい音声トラックを一番最後に持ってくる。

コマンド例

HandBrakeCLI -i "YourDVD.ISO" -e x264 -r 29.97 -q 22 --vfr --all-audio -E aac -R 44.1 -X 720 --all-subtitles -O -t 2 -o output.mp4

HandBrakeCLI -i "YourDVD.ISO" -e x264 -r 29.97 -q 22 --vfr -a 2,1 -E aac -R 44.1 -X 720 --all-subtitles -O -t 2 -o output.mp4
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?