Video/MPlayer

インストール

パッケージ入手

No. パッケージ URL 説明
1 faac
faad2
mpeg4, mpeg2/aac codec
2 lame http://lame.sourceforge.net/ mp3 codec
3 xvid http://www.xvid.org/ XviD codec
4 x264 http://www.videolan.org/developers/x264.html h264/avc encoder
5 all-codecs http://www.mplayerhq.hu Codes集
6 MPlayer http://www.mplayerhq.hu MPlayer本体

compile

faac> bootstrap; ./configure --prefix=/usr/local/faac; make; sudo make install
faad2> ./configure --prefix=/usr/local/faad2; make; sudo make install
lame> ./configure --prefix=/usr/local/lame; make; sudo make install
xvid> cd build/generic; configure --prefix=/usr/local/xvidcore; make; sudo make install
x264> ./configure --prefix=/usr/local/x264 --enable-shared; make; make install
> mkdir /usr/local/MPlayer/lib
> tar xvfj all-20110131.tar.bz2 
> mv all-20100303 /usr/local/MPlayer/lib/codecs
MPlayer> ./configure --prefix=/usr/local/MPlayer --codecsdir=/usr/local/MPlayer/lib/codecs
...
  Enabled optional drivers:
    Input: dvdnav ftp pvr tv-v4l2 tv cddb cdda dvdread bluray vcd dvb smb networking
    Codecs: libvpx x264 xvid ffmpeg(internal) real xanim libopus faad2 faac liba52 mpg123 libtheora speex libvorbis libmad liblzo OpenJPEG
       ★↑有効コーデックを確認。x264、xvid、faac、faad2、mpg123
    Audio output: alsa openal pulse esd oss v4l2 sdl mpegpes(dvb)
    Video output: v4l2 matrixview opengl sdl pnm jpeg mng mpegpes(dvb) fbdev svga caca aa xvidix cvidix dga vdpau xv x11 xover yuv4mpeg md5sum tga

  Disabled optional drivers:
    Input: vstream radio tv-v4l1 tv-dshow librtmp live555 nemesi
    Codecs: crystalhd libdv libopencore_amrwb libopencore_amrnb qtx win32 ilbc musepack libdca libmpeg2 libgsm toolame twolame gif
       ★↑無効コーデックで良いかを確認。
    Audio output: sndio sun jack nas arts ivtv dxr2
    Video output: zr zr2 ivtv dxr3 dxr2 vesa gif89a ggi winvidix 3dfx xmga xvmc directfb dfbmga bl xvr100 tdfx_vid wii s3fb tdfxfb mga
...
MPlayer> make; make install

再生

  • 基本
mplayer target
  • DVD再生

タイトル、チャプター、アングル、各ストリームIDの確認

> mplayer -v -dvd-device /dev/dvd dvd://1
...
Reading disc structure, please wait...
There are 4 titles on this DVD.                ← 4タイトル
There are 8 chapters in this DVD title.        ← 8チャプター
There are 1 angles in this DVD title.          ← 1アングル
DVD successfully opened.
audio stream: 0 format: ac3 (stereo) language: en aid: 128. ← 英語 aid 128
audio stream: 1 format: ac3 (stereo) language: ja aid: 129. ← 日本語 aid 129 
number of audio channels on disk: 2.           ← 音声ストリーム数 2
subtitle ( sid ): 0 language: ja               ← 日本語字幕 sid 0
subtitle ( sid ): 1 language: ja               ← 日本語字幕 sid 1
number of subtitles on disk: 2                 ← 字幕ストリーム数 2
...

タイトル 1 を英語音声、日本語字幕で再生

> mplayer dvd://1 -alang en -slang ja

タイトル 1 の チャプター 1〜5 を音声ストリーム aid 129 、字幕ストリーム sid 0 で再生

> mplayer -dvd-device /dev/dvd -aid 129 -sid 0 dvd://1 -chapter 1-5
  • Webカメラ映像再生
> mplayer tv://device=/dev/video0

録画

mplayer source.avi -dumpstream -dumpfile dump.raw



---
update at 2020/12/06 11:41:05

※注:当サイトは特定環境において確認できた事象のみを記述しています。他の環境での動作は一切保証しません。