Dxr3-plugin: Difference between revisions
(initial) |
No edit summary |
||
(14 intermediate revisions by 11 users not shown) | |||
Line 13: | Line 13: | ||
==Installation== |
==Installation== |
||
To install FFMPEG |
To install FFMPEG |
||
⚫ | |||
<pre> |
|||
⚫ | |||
⚫ | |||
cd ffmpeg-<VERSION> |
|||
⚫ | |||
⚫ | |||
⚫ | |||
⚫ | |||
make |
|||
⚫ | |||
make |
make install |
||
⚫ | |||
make install |
|||
⚫ | |||
</pre> |
|||
Now the kernel sources has to be installed for the em8300 driver which is installed after it. If a normal release is used |
Now the kernel sources has to be installed for the em8300 driver which is installed after it. If a normal release is used |
||
⚫ | |||
<pre> |
|||
⚫ | |||
⚫ | |||
cd em8300-<VERSION> |
|||
⚫ | |||
⚫ | |||
make |
|||
⚫ | |||
make |
make install |
||
⚫ | |||
make install |
|||
make |
|||
⚫ | |||
make |
make install |
||
make |
make devices |
||
make devices |
|||
</pre> |
|||
if the CVS version (recommended) is used |
if the CVS version (recommended) is used |
||
⚫ | |||
<pre> |
|||
⚫ | |||
⚫ | |||
cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/dxr3 |
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/dxr3 co em8300 |
||
⚫ | |||
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/dxr3 co em8300 |
|||
make |
|||
⚫ | |||
make |
make install |
||
make install |
|||
⚫ | |||
gcc em8300setup.c -o em8300setup -I../include |
|||
⚫ | |||
cp em8300setup /usr/local/bin |
|||
cp em8300setup /usr/local/bin |
|||
</pre> |
|||
===Patches=== |
===Patches=== |
||
Before the plugin is installed after [[plugin installation]], the plugins '''Makefile''' has to be adapted |
Before the plugin is installed after [[plugin installation]], the plugins '''Makefile''' has to be adapted |
||
⚫ | |||
<pre> |
|||
+ DVBDIR = ../../../DVB |
|||
⚫ | |||
⚫ | |||
+ FFMDIR = /usr/local/include/ffmpeg |
|||
⚫ | |||
</pre> |
|||
==Problems== |
==Problems== |
||
* There are incompatibilities in combination with [[ac3overdvb-patch]] and a ''' |
* There are incompatibilities in combination with [[ac3overdvb-patch]] and a '''channels.conf''' with DD-Audio-Pids |
||
* The em8300 driver release cannot be compiled under SuSE 9.1, the CVS version |
* The em8300 driver release cannot be compiled under SuSE 9.1, the CVS version has no problem. |
||
* SF.net Git master version of plugin is abandoned, use <code>0.2-branch</code> instead. |
|||
* The OSD is rather limited in functionality compared to a DVB card with onboard MPEG2 decoder. This makes it impossible to use plugins such as osdimage and osdpip. There have been lots of improvements to this in the 0.2 series releases of the plugin, though. |
|||
* [http://sourceforge.net/mailarchive/forum.php?thread_name=Pine.OSF.4.64.0612080901030.386033%40kosh.hut.fi&forum_name=dxr3plugin-users Some] people reported unstability and flicker OSD problem with this plugin. Using [[skinelchi-plugin]] instead the default one usually helps. |
|||
* [http://www.vdr-portal.de/board/thread.php?threadid=76768 thread] for osdpip-0.0.10 an dxr3 card . |
|||
* [http://www.vdr-portal.de/board/attachment.php?attachmentid=18698 Patch] for osdpip-0.0.10 an vdr-dxr3 card . |
|||
⚫ | |||
See cloning instructions at http://sourceforge.net/projects/dxr3plugin/develop |
|||
It is recommended to use the '''<code>0.2-branch</code>''' sources, '''<code>master</code>''' is an abandoned development branch in the SourceForge.net Git repository. |
|||
To switch to '''<code>0.2-branch</code>''' after cloning per the instructions above: |
|||
git checkout -b 0.2-branch --track origin/0.2-branch |
|||
If you feel adventurous, there's another development version of the plugin at http://projects.vdr-developer.org/projects/plg-dxr3 |
|||
⚫ | |||
<pre> |
|||
⚫ | |||
cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/dxr3plugin co dxr3 |
|||
</pre> |
|||
==Links== |
==Links== |
||
Line 87: | Line 90: | ||
|} |
|} |
||
[[Category:Plugins]] |
[[Category:Outdated Plugins]] |
||
{{i18n|dxr3-plugin}} |
|||
<!-- Link to german wiki page --> |
|||
[[de:Dxr3-plugin]] |
Latest revision as of 11:59, 25 November 2013
Description
With the DXR3 plugin one can use DXR3/Hollywood+ cards as output devices for VDR. The bargain of a costly FullFeatured DVB card can be avoided.
Hardware requirements
- DXR3/Hollywood+
Software requirements
- em8300 driver
- FFMPEG
- Linux kernel sources
Installation
To install FFMPEG
cd $SOURCEDIR tar -xvzf ffmpeg-<VERSION>.tar.gz cd ffmpeg-<VERSION> ./configure --prefix=/usr/local \ --enable-shared make make install ldconfig
Now the kernel sources has to be installed for the em8300 driver which is installed after it. If a normal release is used
cd $SOURCEDIR tar xvzf em8300-<VERSION>.tar.gz cd em8300-<VERSION> ./configure --prefix=/usr/local make make install cd modules make make install make devices
if the CVS version (recommended) is used
cd $SOURCEDIR cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/dxr3 login cvs -z3 -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/dxr3 co em8300 cd em8300/modules make make install cd ../em8300setup gcc em8300setup.c -o em8300setup -I../include cp em8300setup /usr/local/bin
Patches
Before the plugin is installed after plugin installation, the plugins Makefile has to be adapted
- DVBDIR = ../../../../DVB + DVBDIR = ../../../DVB - FFMDIR = ../../../../ffmpeg + FFMDIR = /usr/local/include/ffmpeg
Problems
- There are incompatibilities in combination with ac3overdvb-patch and a channels.conf with DD-Audio-Pids
- The em8300 driver release cannot be compiled under SuSE 9.1, the CVS version has no problem.
- SF.net Git master version of plugin is abandoned, use
0.2-branch
instead. - The OSD is rather limited in functionality compared to a DVB card with onboard MPEG2 decoder. This makes it impossible to use plugins such as osdimage and osdpip. There have been lots of improvements to this in the 0.2 series releases of the plugin, though.
- Some people reported unstability and flicker OSD problem with this plugin. Using skinelchi-plugin instead the default one usually helps.
- thread for osdpip-0.0.10 an dxr3 card .
- Patch for osdpip-0.0.10 an vdr-dxr3 card .
Git
See cloning instructions at http://sourceforge.net/projects/dxr3plugin/develop
It is recommended to use the 0.2-branch
sources, master
is an abandoned development branch in the SourceForge.net Git repository.
To switch to 0.2-branch
after cloning per the instructions above:
git checkout -b 0.2-branch --track origin/0.2-branch
If you feel adventurous, there's another development version of the plugin at http://projects.vdr-developer.org/projects/plg-dxr3
Links
[1] | http://sourceforge.net/projects/dxr3plugin | Plugin homepage |
[2] | http://dxr3.sourceforge.net | Linux DXR3 and Hollywood+ driver projekt homepage |
[3] | http://ffmpeg.sourceforge.net | FFMPEG homepage |