
<?xml version="1.0"?>
<?xml-stylesheet type="text/css" href="http://www.linuxtv.org/vdrwiki/skins/common/feed.css?270"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>http://www.linuxtv.org/vdrwiki/index.php?title=Special:Contributions/80.153.77.154&amp;feed=atom&amp;limit=50&amp;target=80.153.77.154&amp;year=&amp;month=</id>
		<title>VDR Wiki - User contributions [en]</title>
		<link rel="self" type="application/atom+xml" href="http://www.linuxtv.org/vdrwiki/index.php?title=Special:Contributions/80.153.77.154&amp;feed=atom&amp;limit=50&amp;target=80.153.77.154&amp;year=&amp;month="/>
		<link rel="alternate" type="text/html" href="http://www.linuxtv.org/vdrwiki/index.php/Special:Contributions/80.153.77.154"/>
		<updated>2013-05-24T19:58:31Z</updated>
		<subtitle>From VDR Wiki</subtitle>
		<generator>MediaWiki 1.16.5</generator>

	<entry>
		<id>http://www.linuxtv.org/vdrwiki/index.php/Mplayer-plugin</id>
		<title>Mplayer-plugin</title>
		<link rel="alternate" type="text/html" href="http://www.linuxtv.org/vdrwiki/index.php/Mplayer-plugin"/>
				<updated>2009-09-14T07:35:11Z</updated>
		
		<summary type="html">&lt;p&gt;80.153.77.154: /* Links */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;==Description==&lt;br /&gt;
[[Image:Mplayer-plugin(setup).jpg|thumb|Setup]]&lt;br /&gt;
The '''MPlayer plugin''' uses [[MPlayer]] to play video files other than the recordings. E.g. the famous DivX format can be played using this plugin.&lt;br /&gt;
&lt;br /&gt;
{{Box Info|&lt;br /&gt;
This plugin comes together with the [[mp3-plugin]] in one package. By default, both the MP3 and MPlayer plugin lib will be built from sources.&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
==Hardware requirements==&lt;br /&gt;
* faster hardware (e.g. &amp;gt;1GHz for DivX other formats might be less [[CPU]] intensive).&lt;br /&gt;
&lt;br /&gt;
==Software requirements==&lt;br /&gt;
* MPlayer&lt;br /&gt;
* several codecs&lt;br /&gt;
* Lame&lt;br /&gt;
* FFMPEG&lt;br /&gt;
* mplayer.sh&lt;br /&gt;
&lt;br /&gt;
==Installation==&lt;br /&gt;
To install lame&lt;br /&gt;
 cd $SOURCEDIR&lt;br /&gt;
 tar xvzf lame-&amp;lt;VERSION&amp;gt;.tar.gz&lt;br /&gt;
 cd lame-&amp;lt;VERSION&amp;gt;&lt;br /&gt;
 ./configure --prefix=/usr/local&lt;br /&gt;
 make&lt;br /&gt;
 make install&lt;br /&gt;
&lt;br /&gt;
FFMPEG&lt;br /&gt;
 cd $SOURCEDIR&lt;br /&gt;
 tar xvzf ffmpeg-&amp;lt;VERSION&amp;gt;.tar.gz&lt;br /&gt;
 ln -s ffmpeg-&amp;lt;VERSION&amp;gt; ffmpeg&lt;br /&gt;
 cd ffmpeg&lt;br /&gt;
 ./configure --prefix=/usr/local \&lt;br /&gt;
             --enable-shared&lt;br /&gt;
 make&lt;br /&gt;
 make install&lt;br /&gt;
 ldconfig&lt;br /&gt;
&lt;br /&gt;
For [[MPlayer]], see it's documentation and homepage.&lt;br /&gt;
&lt;br /&gt;
See [[plugin installation]].&lt;br /&gt;
&lt;br /&gt;
==Configuration==&lt;br /&gt;
See also [[mp3-plugin]].&lt;br /&gt;
&lt;br /&gt;
MPlayer can work in one of two modes (changeable in the plugin setup)&lt;br /&gt;
* Slave (recommended)&lt;br /&gt;
** No further configuration is needed for this.&lt;br /&gt;
* Traditional&lt;br /&gt;
If &amp;quot;Traditional&amp;quot; is choosen '''/usr/local/bin/mplayer.sh.conf''' has to be altered&lt;br /&gt;
 # Lirc RC File&lt;br /&gt;
 LIRCRC=&amp;quot;/etc/lircrc.conf&amp;quot;&lt;br /&gt;
&lt;br /&gt;
and MPlayer must be compiled with [[LIRC]] support!&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Parameter===&lt;br /&gt;
{| border=1 cellpadding=2 cellspacing=0&lt;br /&gt;
|- bgcolor=#efdead&lt;br /&gt;
!Parameter (short)&lt;br /&gt;
!Parameter (long)&lt;br /&gt;
!Description&lt;br /&gt;
|-&lt;br /&gt;
| -m CMD || --mount=CMD   || use CMD to mount/unmount/eject mp3 sources (default: mount.sh)&lt;br /&gt;
|-&lt;br /&gt;
| -M CMD || --mplayer=CMD || use CMD when calling MPlayer (default: mplayer.sh)&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Problems==&lt;br /&gt;
===MPlayer fails to decode movies===&lt;br /&gt;
...with errors indicating ffdivx can't handle some fourcc coding or mpegpes can't scale properly: Make sure you use the mplayer.sh script from (5) and not the included example.&lt;br /&gt;
&lt;br /&gt;
===MPlayer plays no videos when the first DVB card has no MPEG decoder=== &lt;br /&gt;
* Try to alter ''dev/adapter0'' in '''libvo/vo_mpegpes.c''' of the MPlayer sources. &lt;br /&gt;
* With new mplayer versions it is possible to give the correct video card in '''mplayer.sh.conf''' by &lt;br /&gt;
 VO=&amp;quot;mpegpes:card=2&amp;quot;&lt;br /&gt;
* Because the drivers don't always load in the same order, you can make things automagically (in mplayer.sh.conf):&lt;br /&gt;
 VO=&amp;quot;mpegpes:card=$(($(find /dev/dvb | grep video0 | cut -c17)+1))&amp;quot;&lt;br /&gt;
 AO=&amp;quot;mpegpes:card=$(($(find /dev/dvb | grep audio0 | cut -c17)+1))&amp;quot;&lt;br /&gt;
&lt;br /&gt;
===Video is displayed in black and white===&lt;br /&gt;
* It might be your TV doesn't support NTSC. Try to set the ''NTSC'' option in '''/usr/local/bin/mplayer.sh.conf''' to ''false''.&lt;br /&gt;
* Does not work for DVDs and (S)VCDs.&lt;br /&gt;
&lt;br /&gt;
==Links==&lt;br /&gt;
{|&lt;br /&gt;
| [1]&lt;br /&gt;
| http://www.muempf.de/index.html&lt;br /&gt;
| Plugin homepage&lt;br /&gt;
|-&lt;br /&gt;
| [2]&lt;br /&gt;
| http://www.mplayerhq.hu&lt;br /&gt;
| MPlayer homepage&lt;br /&gt;
|-&lt;br /&gt;
| [3]&lt;br /&gt;
| http://ffmpeg.sourceforge.net&lt;br /&gt;
| FFMPEG homepage&lt;br /&gt;
|-&lt;br /&gt;
| [4]&lt;br /&gt;
| http://lame.sourceforge.net&lt;br /&gt;
| Lame homepage&lt;br /&gt;
|-&lt;br /&gt;
| [5]&lt;br /&gt;
| http://batleth.sapienti-sat.org/projects/VDR&lt;br /&gt;
| Shell script (mplayer.sh)&lt;br /&gt;
|-&lt;br /&gt;
| [6]&lt;br /&gt;
| http://www.js-home.org/vdr/mplayer-multi/index.php&lt;br /&gt;
| mplayer-multi&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
[[Category:Plugins]]&lt;br /&gt;
&lt;br /&gt;
{{i18n|mplayer-plugin}}&lt;/div&gt;</summary>
		<author><name>80.153.77.154</name></author>	</entry>

	</feed>