X11out-plugin
From VDR Wiki
(Difference between revisions)
(initial) |
(→Links) |
||
| (One intermediate revision not shown) | |||
| Line 12: | Line 12: | ||
==Installation== | ==Installation== | ||
FFMPEG | FFMPEG | ||
| - | + | cd $SOURCEDIR | |
| - | cd $SOURCEDIR | + | tar xvzf ffmpeg-<VERSION>.tar.gz |
| - | tar xvzf ffmpeg-<VERSION>.tar.gz | + | cd ffmpeg-<VERSION> |
| - | cd ffmpeg-<VERSION> | + | ./configure --prefix=/usr/local \ |
| - | ./configure --prefix=/usr/local \ | + | --enable-shared |
| - | + | make | |
| - | make | + | make install |
| - | make install | + | ldconfig |
| - | ldconfig | + | |
| - | + | ||
Netpbm | Netpbm | ||
| - | + | cd $SOURCEDIR | |
| - | cd $SOURCEDIR | + | tar xvzf netpbm-<VERSION>.tgz |
| - | tar xvzf netpbm-<VERSION>.tgz | + | cd netpbm-<VERSION> |
| - | cd netpbm-<VERSION> | + | ./configure |
| - | ./configure | + | make |
| - | make | + | make package |
| - | make package | + | # install prefix (/usr/local/netpbm) ==> /usr/local |
| - | # install prefix (/usr/local/netpbm) ==> /usr/local | + | ^^^^^^^^^^ |
| - | + | ./installnetpbm | |
| - | ./installnetpbm | + | |
| - | + | ||
See [[plugin installation]] | See [[plugin installation]] | ||
| Line 58: | Line 54: | ||
[[Category:Plugins]] | [[Category:Plugins]] | ||
| - | + | {{i18n|x11out-plugin}} | |
| - | + | ||
Latest revision as of 08:13, 14 March 2006
Contents |
Description
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
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 |




