X11out-plugin: Difference between revisions

From VDR Wiki
Jump to navigation Jump to search
(initial)
 
No edit summary
 
(2 intermediate revisions by 2 users not shown)
Line 12: Line 12:
==Installation==
==Installation==
FFMPEG
FFMPEG
cd $SOURCEDIR
<pre>
tar xvzf ffmpeg-<VERSION>.tar.gz
cd $SOURCEDIR
tar xvzf ffmpeg-<VERSION>.tar.gz
cd ffmpeg-<VERSION>
./configure --prefix=/usr/local \
cd ffmpeg-<VERSION>
--enable-shared
./configure --prefix=/usr/local \
make
--enable-shared
make
make install
ldconfig
make install
ldconfig
</pre>


Netpbm
Netpbm
cd $SOURCEDIR
<pre>
tar xvzf netpbm-<VERSION>.tgz
cd $SOURCEDIR
tar xvzf netpbm-<VERSION>.tgz
cd netpbm-<VERSION>
./configure
cd netpbm-<VERSION>
make
./configure
make
make package
# install prefix (/usr/local/netpbm) ==> /usr/local
make package
^^^^^^^^^^
# install prefix (/usr/local/netpbm) ==> /usr/local
./installnetpbm
^^^^^^^^^^
./installnetpbm
</pre>


See [[plugin installation]]
See [[plugin installation]]
Line 56: Line 52:
|}
|}


[[Category:Plugins]]
[[Category:Outdated Plugins]]


{{i18n|x11out-plugin}}
<!-- Link to german wiki page -->
[[de:X11out-plugin]]

Latest revision as of 11:34, 25 November 2013

Description

Screenshot

The X11out plugin is a proof-of-concept study to display the output of X11 via VDR on the TV.

Hardware requirements

Software requirements

  • XvFB (virtual X frame buffer - part of X11)
  • FFMPEG
  • Netpbm

Installation

FFMPEG

cd $SOURCEDIR
tar xvzf ffmpeg-<VERSION>.tar.gz
cd ffmpeg-<VERSION>
./configure --prefix=/usr/local \
            --enable-shared
make
make install
ldconfig

Netpbm

cd $SOURCEDIR
tar xvzf netpbm-<VERSION>.tgz
cd netpbm-<VERSION>
./configure
make
make package
# install prefix (/usr/local/netpbm) ==> /usr/local
                                         ^^^^^^^^^^
./installnetpbm

See plugin installation

Problems

  • This plugin is only a proof-of-concept

Links

[1] http://www.js-home.org/vdr/x11out Plugin homepage
[2] http://ffmpeg.sourceforge.net FFMPEG homepage
[3] http://netpbm.sourceforge.net Netpbm homepage