NotebookForums.com › Forums › General Notebook Discussions › Linux & Other OS's › trying to get dvd playback - ubuntu breezy
New Posts  All Forums:Forum Nav:

trying to get dvd playback - ubuntu breezy

post #1 of 5
Thread Starter 
has anyone tried installing the codec needed and mplayer using apt-get?

I get a lot of errors and can't install it.. I'll copy and paste the errors later when I get a chance. I've added all the extra repositories, just wondering if there's anything else I might be doing wrong...
post #2 of 5
first thing first, make sure all your repositories are indeed BREEZY (not hoary). done? good, lets move on. from the stock sources.list you should be able to install mplayer easily. so lets go. don't forget to "sudo apt-get update"
Code:
sudo apt-get install mplayer-fonts
sudo apt-get install mozilla-mplayer
installing fonts will also install all your nice mplayer-386 and all teh other deps. you can also always just apt-get install mplayer-386 but than you have to install fonts when you're done anyway. now don't forget to change video from x11 to vx in mplayer.conf now install the codecs. you should be able to do all of this:
Code:
sudo apt-get install gstreamer0.8-plugins
sudo apt-get install gstreamer0.8-lame
sudo apt-get install gstreamer0.8-ffmpeg
sudo apt-get install vorbis-tools
it might or it might not let you do these, try them anyway:
Code:
sudo apt-get install lame
sudo apt-get install sox
sudo apt-get install ffmpeg
sudo apt-get install mjpegtools
finally do this:
Code:
gst-register-0.8
and finally its done for DVD Playback. actually, you might not wanna use Xine for playing DVDs, it will let you browse menus and so on, something mplayer doesn't do. so go ahead and install xine
Code:
sudo apt-get install xine-ui
and now you need the dvd codecs. there is a problem however, breezy's backports have been emptied (contrary to hoary) so you might do some googling. but its ok, since this is a how-to i'll google for you. http://download.videolan.org/pub/lib...2.9-1_i386.deb here is the package. download and install using dpkg
Code:
sudo dpkg -i libdvdcss2_1.2.9-1_i386.deb
now why not make it so that when you put in a dvd xine automatically opens up and starts playing. this should take care of it:
Code:
gconftool-2 --type string --set /desktop/gnome/volume_manager/autoplay_dvd_command "xine dvd://"
you're done. pop in a movie and enjoy. make sure you have ati or nvidia drivers installed.
post #3 of 5
hey abf, here's my sources.list. it tells me that it cannot find mplayer-mozilla and mplayer-fonts. also, where do i get the win32 codecs and whatever isn't available on the breezy repos?

Code:
deb cdrom:[Ubuntu 5.10 _Breezy Badger_ - Release i386 (20051012)]/ breezy main restricted


deb http://us.archive.ubuntu.com/ubuntu breezy main restricted
deb-src http://us.archive.ubuntu.com/ubuntu breezy main restricted


## Major bug fix updates produced after the final release of the
## distribution.
deb http://us.archive.ubuntu.com/ubuntu breezy-updates main restricted
deb-src http://us.archive.ubuntu.com/ubuntu breezy-updates main restricted

## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team.
deb http://us.archive.ubuntu.com/ubuntu breezy universe
deb-src http://us.archive.ubuntu.com/ubuntu breezy universe

## Uncomment the following two lines to add software from the 'backports'
## repository.
## N.B. software from this repository may not have been tested as
## extensively as that contained in the main release, although it includes
## newer versions of some applications which may provide useful features.
## Also, please note that software in backports WILL NOT receive any review
## or updates from the Ubuntu security team.

deb http://security.ubuntu.com/ubuntu breezy-security main restricted
deb-src http://security.ubuntu.com/ubuntu breezy-security main restricted

deb http://security.ubuntu.com/ubuntu breezy-security universe
deb-src http://security.ubuntu.com/ubuntu breezy-security universe

post #4 of 5
this is my sources.list

Code:
deb http://archive.ubuntu.com/ubuntu breezy main restricted
deb-src http://archive.ubuntu.com/ubuntu breezy main restricted

## Major bug fix updates produced after the final release of the
## distribution.
deb http://archive.ubuntu.com/ubuntu breezy-updates main restricted
deb-src http://archive.ubuntu.com/ubuntu breezy-updates main restricted

## Uncomment the following two lines to add software from the 'universe'
## repository.
## N.B. software from this repository is ENTIRELY UNSUPPORTED by the Ubuntu
## team, and may not be under a free licence. Please satisfy yourself as to
## your rights to use the software. Also, please note that software in
## universe WILL NOT receive any review or updates from the Ubuntu security
## team

deb http://archive.ubuntu.com/ubuntu breezy universe multiverse
deb-src http://archive.ubuntu.com/ubuntu breezy universe multiverse

## Security Updates
deb http://security.ubuntu.com/ubuntu breezy-security main restricted
deb-src http://security.ubuntu.com/ubuntu breezy-security main restricted

deb http://security.ubuntu.com/ubuntu breezy-security universe multiverse
deb-src http://security.ubuntu.com/ubuntu breezy-security universe multiverse

## Skype
deb http://download.skype.com/linux/repos/debian/ stable non-free

## Hoary Extras (because Breezy Extras are not curently available)
deb http://ubuntu-backports.mirrormax.net/ hoary-extras main universe multiverse restricted

## Officials Backports
## deb http://archive.ubuntu.com/ubuntu breezy-backports main universe multiverse restricted

## Backports
## deb http://ubuntu-backports.mirrormax.net/ breezy-backports main universe multiverse restricted
## deb http://ubuntu-backports.mirrormax.net/ breezy-backports-staging main universe multiverse restricted
## deb http://ubuntu-backports.mirrormax.net/ breezy-extras-staging main universe multiverse restricted

post #5 of 5
you rock, thanks a ton.
New Posts  All Forums:Forum Nav:
  Return Home
  Back to Forum: Linux & Other OS's
NotebookForums.com › Forums › General Notebook Discussions › Linux & Other OS's › trying to get dvd playback - ubuntu breezy