LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Software (https://www.linuxquestions.org/questions/linux-software-2/)
-   -   DVD players? (https://www.linuxquestions.org/questions/linux-software-2/dvd-players-40542/)

ShadowGod 01-06-2003 09:45 PM

DVD players?
 
How do i compile dvd player? where do I download? I will buy some linux books soon but would like to watch a dvd on my freshly installed linux pc.

ubien 01-06-2003 10:54 PM

http://www.mplayerhq.hu/homepage/ , read the README files to install. Make sure you make a symbolic link between your DVD player in /dev/ and /dev/dvd. Say your DVD player is located at /dev/hdc. You would type ln -s /dev/hdc /dev/dvd

BxBoy 01-07-2003 01:02 AM

There's also Xine, which in most cases is easier than mplayer, especially for DVD movies.

URL: http://xine.sf.net

MasterC 01-07-2003 01:36 AM

Easier? What can be easier than:
Downloading Mplayer, untarring it:
./configure
make
make install
mplayer -dvd 1

And bam! You are watching a DVD. You don't have to hunt around several sites, install extra things. It's 1 package, bam! :)

I really really really don't agree that xine is easier. As if that wasn't obvious ;)

Cool

ShadowGod 01-07-2003 10:19 PM

/dev/hdc? I cant get it to extact there.

MasterC 01-08-2003 12:20 AM

???
They were referring to how to symlink your actual DVD Drive to the /dev/dvd entry. First you need to figure out what device your DVD drive is, I do this by:
eject /dev/hdc
eject /dev/hdd

And so on, until my DVD ejects. Once the DVD drive ejects, I know which device it is. Then I make the symlink:
ln -s /dev/hdc /dev/dvd
This makes it so Mplayer can play your DVD since it looks for /dev/dvd by default.

Cool

ShadowGod 01-08-2003 08:27 AM

When ever I type that, it says -s not found? any cause for this?
Cheers

acid_kewpie 01-08-2003 08:31 AM

what are you trying to do? it's
Code:

ln -s /dev/hdc /dev/dvd
and will defintiely work on all standard systems. are you just typing "-s ...." and not "ln -s ..."?


All times are GMT -5. The time now is 07:01 PM.