Ignore:
Timestamp:
12/27/2002 03:33:24 AM (21 years ago)
Author:
Larry Lawrence <larry@…>
Branches:
10.0, 10.1, 11.0, 11.1, 11.2, 11.3, 12.0, 12.1, 6.0, 6.1, 6.2, 6.2.0, 6.2.0-rc1, 6.2.0-rc2, 6.3, 6.3-rc1, 6.3-rc2, 6.3-rc3, 7.10, 7.4, 7.5, 7.6, 7.6-blfs, 7.6-systemd, 7.7, 7.8, 7.9, 8.0, 8.1, 8.2, 8.3, 8.4, 9.0, 9.1, basic, bdubbs/svn, elogind, gnome, kde5-13430, kde5-14269, kde5-14686, kea, ken/TL2024, ken/inkscape-core-mods, ken/tuningfonts, krejzi/svn, lazarus, lxqt, nosym, perl-modules, plabs/newcss, plabs/python-mods, python3.11, qt5new, rahul/power-profiles-daemon, renodr/vulkan-addition, systemd-11177, systemd-13485, trunk, upgradedb, v1_0, v5_0, v5_0-pre1, v5_1, v5_1-pre1, xry111/intltool, xry111/llvm18, xry111/soup3, xry111/test-20220226, xry111/xf86-video-removal
Children:
0b50c002
Parents:
0566707b
Message:

updated to MPlayer-0.90rc2

git-svn-id: svn://svn.linuxfromscratch.org/BLFS/trunk/BOOK@538 af4574ff-66df-0310-9fd7-8a98e5e911e0

File:
1 edited

Legend:

Unmodified
Added
Removed
  • multimedia/videoutils/mplayer/mplayer-inst.xml

    r0566707b r4875b9a  
    33
    44<para>The extra downloads should be located in you source directory with
    5 the bzip files decompressed while the zip file should remain
    6 compressed.</para>
     5the bzip files decompressed.</para>
    76
    87<para>Install MPlayer by running the following commands:</para>
     
    109<para><screen><userinput>install -d /usr/lib/win32 &amp;&amp;
    1110tar -xvf ../w32codec.tar -C /usr/lib/win32 &amp;&amp;
     11tar -xvf ../qt5dlls.tar -C /usr/lib/win32 &amp;&amp;
     12tar -xvf ../qt6dlls.tar -C /usr/lib/win32 &amp;&amp;
     13tar -xvf ../qtextras.tar -C /usr/lib/win32 &amp;&amp;
     14tar -xvf ../rp9codecs.tar -C /usr/lib/win32 &amp;&amp;
    1215unset CFLAGS &amp;&amp;
    13 ./configure --prefix=/usr --confdir=/etc/mplayer &amp;&amp;
     16./configure --prefix=/usr --confdir=/etc/mplayer --enable-largefiles \
     17--enable-gui --enable-menu --enable-new-conf --enable-qtx-codecs \
     18--enable-vorbis --with-reallibdir=/usr/lib/win32/re9codecs \
     19--enable-freetype --enable-shared-pp &amp;&amp;
    1420make &amp;&amp;
    1521make install &amp;&amp;
    16 unzip ../mp-arial-iso-8859-1.zip -d /usr/share/mplayer/font</userinput></screen></para>
     22</userinput></screen></para>
    1723
    1824<para> Each user of MPlayer should complete the install by running the
     
    2127mkdir ~/.mplayer &amp;&amp;
    2228cp etc/codecs.conf ~/.mplayer &amp;&amp;
    23 cp etc/example.conf ~/.mplayer/example.conf &amp;&amp;
    24 ln -sf /usr/share/mplayer/font/iso-8859-1/arial-14 ~/.mplayer/font
     29cp etc/example.conf ~/.mplayer/example.conf
    2530</userinput></screen></para>
     31
     32<sect3>
     33<title>Installing the prerendered Fonts</title>
     34
     35<para>If freetype is in use, the only advantage of prerendered fonts is
     36that they are faster. Install them like this:</para>
     37
     38<para><screen><userinput>install -d /usr/share/mplayer/font &amp;&amp;
     39tar -xvf ../font-arial-iso-8859-1.tar -C /usr/share/mplayer/font &amp;&amp;
     40for i in /usr/share/mplayer/font/font-arial-&lt;size&gt;*
     41do ln -s $i /usr/share/mplayer/font; done</userinput></screen></para>
     42
     43<para>Replace <userinput>&lt;size&gt;</userinput> with either 14, 18, 24
     44or 28.</para>
     45
     46</sect3>
     47
     48<sect3>
     49<title>Installation for DVD playback</title>
     50<para>If you want DVD playback with MPlayer, you need to make a link
     51from your DVD drive to <filename>/dev/dvd</filename>:</para>
     52<para><screen><userinput>ln -s /dev/&lt;dvd drive&gt; /dev/dvd
     53</userinput></screen></para>
     54<para>replace <userinput>&lt;dvd drive&gt;</userinput> with whatever
     55device is appropriate, for example <filename>/dev/hdc</filename>. if
     56you don't know which device to choose, type:</para>
     57<para><screen><userinput>dmesg | grep DVD</userinput></screen></para>
     58<para>It should result in an output like:</para>
     59<para><screen><userinput>hdc: Pioneer DVD-ROM ATAPIModel DVD-114 0110,
     60ATAPI CD/DVD-ROM drive</userinput></screen></para>
     61<para>If you have SCSI-Emulation activated for the drives, you'll need
     62to get the right SCSI-device. Every CD/DVD-ROM drive is mapped in the
     63same order as in IDE to the devices named
     64<filename>/dev/scd0</filename>,
     65<filename>/dev/scd1</filename> and so on.</para>
     66</sect3>
    2667
    2768</sect2>
Note: See TracChangeset for help on using the changeset viewer.