multimedia

Install XMBC

Install stable version
wget http://installit.googlecode.com/hg/install.xbmc.sh -O - | bash -

#!/bin/bash

sudo apt-get install -qq -y python-software-properties pkg-config

if [ "$1" == "-u" ]; then
    # add unstable repository
    sudo add-apt-repository -y ppa:team-xbmc/unstable
    
    RELEASE=$(lsb_release -rs | tr -d ".")
    if [ ${RELEASE} -gt 1110 ]; then
        # downgrade to oneiric (lastest available release)
        sudo sed -i "s|$(lsb_release -cs)|oneiric|g" /etc/apt/sources.list.d/team-xbmc-unstable-*.list 
    fi
else
    # add stable repository
    sudo add-apt-repository -y ppa:team-xbmc/ppa

    RELEASE=$(lsb_release -rs | cut -d"." -f1)
    if [ ${RELEASE} -gt 10 ]; then
        # downgrade to maverick (lastest available release)
        sudo sed -i "s|$(lsb_release -cs)|maverick|g" /etc/apt/sources.list.d/team-xbmc-ppa-*.list 
    fi
fi

# update
sudo apt-get update -qq

# install xbmc
sudo apt-get install -qq -y xbmc

# install required libraries
sudo apt-get install -qq -y libmad0 libmpeg2-4

install unstable version
wget http://installit.googlecode.com/hg/install.xbmc.sh -O /tmp/install.xbmc.sh
bash /tmp/install.xbmc.sh -u

Unofficial PVR repository
sudo add-apt-repository ppa:lars-opdenkamp/xbmc-pvr

XBMC standalone
sudo apt-get install -y xbmc xbmc-standalone

Configuring a Wii Remote
http://www.mini-itx.com/projects/xbmc-ion/module/6

Ubuntu: Install Nero Linux

Nero Download
http://www.nero.com/enu/downloads-linux4-trial.php
# download deb package
sudo dpkg -i ~/Downloads/nerolinux-*.deb

wget http://installit.googlecode.com/hg/install.nero.sh -O - | bash -

#!/bin/bash

URL=$1
FILE=${URL##*/}

# get file
if [ ${URL:0:4} == "http" ]; then
  wget ${URL} -O /tmp/${FILE}
else
  cp ${URL} /tmp/${FILE}
fi

# install file
sudo dpkg -i /tmp/${FILE}

Install DVD decryption library script

wget http://installit.googlecode.com/hg/install.dvd.sh -O - | bash -

#!/bin/bash

# add repository
sudo wget http://www.medibuntu.org/sources.list.d/$(lsb_release -cs).list -O /etc/apt/sources.list.d/medibuntu.list

# update repository
sudo apt-get update -qq

# get keyring
sudo apt-get -y --force-yes install medibuntu-keyring

# install libdvdcss
sudo apt-get install -y --force-yes libdvdcss2

Other method:
sudo apt-get install ubuntu-restricted-extras
sudo /usr/share/doc/libdvdread4/install-css.sh

Links
http://download.videolan.org/pub/libdvdcss/

Install Gimp from Ubuntu PPA

wget http://installit.googlecode.com/hg/install.gimp.sh -O - | bash -

#!/bin/bash

# add repository
sudo add-apt-repository -y ppa:matthaeus123/mrw-gimp-svn

# update
sudo apt-get update -qq

# install gimp
sudo apt-get install -y gimp

# OPTIONAL: enable single window mode
Menu Window > check "Single window mode"

# Links
http://www.webupd8.org/2009/08/how-to-install-gimp-27-in-ubuntu-jaunty.html
ftp://ftp.gimp.org/pub/gimp/v2.7/

Logitech QuckCam Webcam on OpenWrt

install
opkg install kmod-usb-core kmod-usb2 kmod-video-core kmod-video-gspca-core kmod-video-gspca-zc3xx motion

configure
sed -i 's|output_normal on|output_normal off|g' /etc/motion.conf
sed -i 's|webcam_localhost on|webcam_localhost off|g' /etc/motion.conf

start
motion

view
http://YOUR_OPENWRT_IP:8081

OPTINAL: anable acces from outside
iptables -A input_wan -p tcp --dport 8081 -j ACCEPT

links
http://eko.one.pl/index.php?p=openwrt-webcam

Play BlueRay disc with Linux

Play BlueRay discs with Linux

# new 2
sudo apt-get update
sudo apt-get upgrade

sudo apt-get install build-essential libc6-dev libssl-dev libgl1-mesa-dev libqt4-dev

cd /tmp
wget http://www.makemkv.com/download/makemkv_v1.6.3_bin.tar.gz
wget http://www.makemkv.com/download/makemkv_v1.6.3_oss.tar.gz

tar -xvf makemkv_v1.6.3_bin.tar.gz
tar -xvf makemkv_v1.6.3_oss.tar.gz

cd /tmp
cd makemkv_v1.6.3_oss
sudo make -f makefile.linux
sudo make -f makefile.linux install

cd /tmp
cd makemkv_v1.6.3_bin
sudo make -f makefile.linux

Install boxee

## new
wget http://www.boxee.tv/download/ubuntu -P /tmp
dpkg -i /tmp/boxee*.deb
sudo apt-get install -f -y
 
 
 
 
### old
 
 
# add boxee repository
cat <<EOF> /etc/apt/sources.list.d/boxee.list
deb http://apt.boxee.tv hardy main
EOF
 
# add ubuntu jaunty repository
cat <<EOF> /etc/apt/sources.list.d/jaunty.list
deb http://de.archive.ubuntu.com/ubuntu/ jaunty main universe
EOF
 
# add repository
apt-get update
apt-get install boxee
apt-get install -f --force-yes
 
# get boxee beta version
wget http://dl.boxee.tv/boxee-0.9.20.10356.i486.deb -P /tmp
dpkg -i /tmp/boxee*.deb -y

Do you like this page? Then support it. Please click the AD below and visit the sponsor. Thank you!


Syndicate content