XBMC

Aus VDR Wiki
(Unterschied zwischen Versionen)
Wechseln zu: Navigation, Suche
(Bitte keine Links zu Anleitungen die illegale Inhalte haben.)
(Links: Reihenfolge geändert, Link ins vdr-portal hinzugefügt)
Zeile 43: Zeile 43:
 
== Links ==
 
== Links ==
 
# [http://xbmc.org/about/features/ XMBC Feature List]
 
# [http://xbmc.org/about/features/ XMBC Feature List]
# [http://xbmc.org/wiki/?title=HOW-TO:_Install_XBMC_for_Linux_on_Ubuntu_8.10_(Intrepid)_step-by-step Gute Anleitung zur Installation von XMBC (auch mit VDPAU)]
 
 
# [http://xbmc.org/forum/showthread.php?t=45314 Anleitung zur Installation von XBMC und VDR]
 
# [http://xbmc.org/forum/showthread.php?t=45314 Anleitung zur Installation von XBMC und VDR]
 +
# [http://vdr-portal.de/board/thread.php?threadid=79501 Thread im VDR-Portal zum XBMC und VDR]
 +
# [http://xbmc.org/wiki/?title=HOW-TO:_Install_XBMC_for_Linux_on_Ubuntu_8.10_(Intrepid)_step-by-step Gute Anleitung zur Installation von XMBC (auch mit VDPAU)]
 
# [http://xbmc.org/wiki/index.php?title=HOW-TO_compile_XBMC_for_Linux_from_source_code HOW-TO compile XBMC for Linux from source code]
 
# [http://xbmc.org/wiki/index.php?title=HOW-TO_compile_XBMC_for_Linux_from_source_code HOW-TO compile XBMC for Linux from source code]

Version vom 6. April 2009, 21:13 Uhr

XMBC mit VDR streamdev Unterstuetzung

Siehe Thread im VDR-Portal [1]

Derzeit kommt als Client nur die Linux Version von XBMC in Frage.

Howto für die XBMC Installation + Patch:

Die einzige offiziell vom Team XBMC unterstützte Linux Distribution ist Ubuntu. Kubuntu funktioniert ebenfalls ohne Einschränkungen.

Vor der Installation müssen alle benötigten Pakete installiert werden: [2]

For Ubuntu (all versions >= 7.04):
# sudo apt-get install subversion make g++ gcc gawk pmount libtool nasm automake cmake gperf unzip bison libsdl1.2-dev \
libsdl-image1.2-dev libsdl-gfx1.2-dev libsdl-mixer1.2-dev libsdl-sound1.2-dev libsdl-stretch-dev libfribidi-dev \
liblzo-dev libfreetype6-dev libsqlite3-dev libogg-dev libasound-dev python-sqlite libglew-dev libcurl4-gnutls-dev \
x11proto-xinerama-dev libxinerama-dev libxrandr-dev libxrender-dev libmad0-dev libtre-dev libogg-dev libvorbis-dev \
libmysqlclient-dev libpcre3-dev libdbus-1-dev libhal-dev libhal-storage-dev libjasper-dev libfontconfig-dev libbz2-dev \
libboost-dev libfaac-dev libenca-dev libxt-dev libxmu-dev libpng-dev libjpeg-dev libpulse-dev


Danach müssen die Sourcen gezogen, gepatcht und kompiliert werden:

mkdir xbmc_vdr
cd xbmc_vdr
svn checkout https://xbmc.svn.sourceforge.net/svnroot/xbmc/branches/linuxport/XBMC
cd XBMC
svn up -r17664
wget http://www.xbmc.org/trac/raw-attachment/ticket/5595/xbmc-svn17664-pvr.patch.gz
gunzip xbmc-svn17664-pvr.patch.gz
patch -p1 < xbmc-svn17664-pvr.patch
./configure
make -j2


Anschließend kann XBMC mit gestartet werden mit

./xbmc.bin

Unter Settings \ Video \ TV muss dann nur noch die Kommunikation (IP und Port) mit dem VDR konfiguriert werden.


Links

  1. XMBC Feature List
  2. Anleitung zur Installation von XBMC und VDR
  3. Thread im VDR-Portal zum XBMC und VDR
  4. Gute Anleitung zur Installation von XMBC (auch mit VDPAU)
  5. HOW-TO compile XBMC for Linux from source code