LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Software
User Name
Password
Linux - Software This forum is for Software issues.
Having a problem installing a new program? Want to know which application is best for the job? Post your question in this forum.

Notices


Reply
  Search this Thread
Old 07-04-2004, 11:35 AM   #1
PhuckFonix
Member
 
Registered: Mar 2004
Location: United States of Bush
Distribution: Knoppix 3.7, Debian Sarge
Posts: 297

Rep: Reputation: 30
DVD Player - MDK 10.0 Official


I have a DVD from Germany and I live in America. I have VLC Media Player (libdvdcss2 libdvdplay0 wxvlc vlc-plugin-a52 vlc-plugin-ogg vlc-plugin-ma).

I try to pick the play file option but there is not file under the mount directory. I went to MDK Control Center 10 -> Hardware ->DVD-ROM information and this is my information: Bus: IDE; Drive capacity: DVD; Channel: secondary; New devfs device: /dev/ide/host0/bus1/traget1/lun0/cd; Old device file: /dev/hdd; Media class cdrom;

I picked lpay file option changed the box to /dev/hdd and tried VCD, DVD(menu), DVD(test), and DVD but they did not work.

What is the matter?
 
Old 07-04-2004, 12:02 PM   #2
LavaDevil94
LQ Guru
 
Registered: Jul 2003
Distribution: Gentoo 2004.2: Who needs exmmpkg when you have emerge?
Posts: 1,795

Rep: Reputation: 47
You should try MPlayer:
http://mplayerhq.hu
Download the source, compile with ./configure --enable-gui, make, and make install as root, then use this command to run your DVD:
mplayer dvd://1
 
Old 07-04-2004, 12:14 PM   #3
PhuckFonix
Member
 
Registered: Mar 2004
Location: United States of Bush
Distribution: Knoppix 3.7, Debian Sarge
Posts: 297

Original Poster
Rep: Reputation: 30
My process is .535ghz btw haha, but, anyways, the player failed my DVD device is either /dev/hdd or /dev/ide/host0/bus1/target1/lun0/cd:
Code:
$ mplayer dvd://1

MPlayer 1.0pre3-3.3.2 (C) 2000-2003 MPlayer Team

CPU: Intel Celeron A Mendocino/Pentium II Dixon 2609 MHz (Family: 6, Stepping: 5)
Detected cache-line size is 32 bytes
CPUflags:  MMX: 1 MMX2: 0 3DNow: 0 3DNow2: 0 SSE: 0 SSE2: 0
Compiled with Runtime CPU Detection - WARNING - this is not optimal!
To get best performance, recompile MPlayer with --disable-runtime-cpudetection.
Reading config file /etc/mplayer/mplayer.conf
Reading config file /home/user/.mplayer/config
Reading /home/user/.mplayer/codecs.conf: Can't open '/home/user/.mplayer/codecs.conf': No such file or directory
Reading /etc/mplayer/codecs.conf: 61 audio & 169 video codecs
font: can't open file: /home/user/.mplayer/font/font.desc
font: can't open file: /usr/share/mplayer/font/font.desc
Linux RTC init error in ioctl (rtc_irqp_set 1024): Permission denied
Try adding "echo 1024 > /proc/sys/dev/rtc/max-user-freq" to your system startup scripts.
Using usleep() timing
Can't open input config file /home/user/.mplayer/input.conf: No such file or directory
Input config file /etc/mplayer/input.conf parsed: 53 binds
Opening joystick device /dev/input/js0
Can't open joystick device /dev/input/js0 : No such file or directory
Can't init input joystick
Setting up LIRC support...
mplayer: could not connect to socket
mplayer: No such file or directory
Failed to open LIRC support.
You will not be able to use your remote control.

Playing dvd://1.
libdvdread: Using libdvdcss version 1.2.8 for DVD access
libdvdread: Could not open /dev/dvd with libdvdcss.
libdvdread: Can't open /dev/dvd for reading
Couldn't open DVD device: /dev/dvd


Exiting... (End of file)

Last edited by PhuckFonix; 07-04-2004 at 12:15 PM.
 
Old 07-04-2004, 12:27 PM   #4
LavaDevil94
LQ Guru
 
Registered: Jul 2003
Distribution: Gentoo 2004.2: Who needs exmmpkg when you have emerge?
Posts: 1,795

Rep: Reputation: 47
/dev/hdd is your DVD drive, right? Try this command as root:
ln -s /dev/hdd /dev/dvd
Then try MPlayer again.
 
Old 07-04-2004, 01:16 PM   #5
PhuckFonix
Member
 
Registered: Mar 2004
Location: United States of Bush
Distribution: Knoppix 3.7, Debian Sarge
Posts: 297

Original Poster
Rep: Reputation: 30
Hmm,
Code:
# ln -s /dev/hdd /dev/dvd
ln: `/dev/dvd': File exists
 
Old 07-04-2004, 01:32 PM   #6
LavaDevil94
LQ Guru
 
Registered: Jul 2003
Distribution: Gentoo 2004.2: Who needs exmmpkg when you have emerge?
Posts: 1,795

Rep: Reputation: 47
Try this command and post the output:
ls -l /dev/dvd
 
Old 07-04-2004, 01:41 PM   #7
PhuckFonix
Member
 
Registered: Mar 2004
Location: United States of Bush
Distribution: Knoppix 3.7, Debian Sarge
Posts: 297

Original Poster
Rep: Reputation: 30
Code:
$ ls -l /dev/dvd
lr-xr-xr-x  1 root root 30 Jul  4 10:01 /dev/dvd -> ide/host0/bus1/target1/lun0/cd
ls -l /dev/hdd
lr-xr-xr-x  1 root root 30 Jul  4 10:01 /dev/hdd -> ide/host0/bus1/target1/lun0/cd
 
Old 07-04-2004, 01:44 PM   #8
LavaDevil94
LQ Guru
 
Registered: Jul 2003
Distribution: Gentoo 2004.2: Who needs exmmpkg when you have emerge?
Posts: 1,795

Rep: Reputation: 47
Hmm... it's getting more complicated... Try this command and post output:
ls /dev/ide/host0/bus1/target1/lun0
 
Old 07-04-2004, 01:48 PM   #9
PhuckFonix
Member
 
Registered: Mar 2004
Location: United States of Bush
Distribution: Knoppix 3.7, Debian Sarge
Posts: 297

Original Poster
Rep: Reputation: 30
Code:
ls /dev/ide/host0/bus1/target1/lun0
cd
 
Old 07-04-2004, 01:57 PM   #10
LavaDevil94
LQ Guru
 
Registered: Jul 2003
Distribution: Gentoo 2004.2: Who needs exmmpkg when you have emerge?
Posts: 1,795

Rep: Reputation: 47
Is that DVD drive your only CD-ROM drive?
 
Old 07-04-2004, 02:17 PM   #11
PhuckFonix
Member
 
Registered: Mar 2004
Location: United States of Bush
Distribution: Knoppix 3.7, Debian Sarge
Posts: 297

Original Poster
Rep: Reputation: 30
It's hdd. No. I have Primary, Slave HDs: hda, hdb; primary CD-ROM 52x24x54 hdc and DVD 16x or 8x Mit/Mat-something drive hdd. It's the second device of the second cable so that makes it fourth.
 
Old 07-04-2004, 02:43 PM   #12
LavaDevil94
LQ Guru
 
Registered: Jul 2003
Distribution: Gentoo 2004.2: Who needs exmmpkg when you have emerge?
Posts: 1,795

Rep: Reputation: 47
Can you post the output of dmesg?
 
Old 07-04-2004, 03:53 PM   #13
Electro
LQ Guru
 
Registered: Jan 2002
Posts: 6,042

Rep: Reputation: Disabled
Sometimes I get:
Quote:
Playing dvd://1.
libdvdread: Using libdvdcss version 1.2.8 for DVD access
libdvdread: Could not open /dev/dvd with libdvdcss.
libdvdread: Can't open /dev/dvd for reading
Couldn't open DVD device: /dev/dvd
What I do is close mplayer and eject the DVD. Then I insert the DVD. Next I open up mplayer. I repeat this a few times. Ogle does the same. It does work. Sometimes it just works on the first try.

DVD works only if you set the region in the DVD drive. You can not play DVDs that are not region 1. I do not know what region is Germany in. If your DVD drive is region free, it can play any region that you want. Search the internet for region free firmware for you DVD drive.

The ide/host0/bus1/target1/lun0/cd is just devfs to designate drives.
 
Old 07-05-2004, 10:56 AM   #14
PhuckFonix
Member
 
Registered: Mar 2004
Location: United States of Bush
Distribution: Knoppix 3.7, Debian Sarge
Posts: 297

Original Poster
Rep: Reputation: 30
I remember having the ability to change regions on Windows. I can change the regions five times. The DVD is probably region 2 and I'm probably region 1. I tried your method with mplayer and it didn't work. My DVD drive name starts with an Ma or Mi and came with a Hewlette-Packard 8650C. I also have a PS2 and my roomate has an XBox.

Where can I find this firmware? What is my DVD drive's name?

Last edited by PhuckFonix; 07-05-2004 at 10:59 AM.
 
  


Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is Off
HTML code is Off



Similar Threads
Thread Thread Starter Forum Replies Last Post
which DVD player can play DVD from hard drive *and* support DVD Menu ? tho_x_tran Linux - Software 16 11-16-2006 03:00 PM
Diff between mdk 10.1 official and mdk 10.1 community Damitha Mandriva 2 12-13-2004 03:01 AM
[MDK 10.1 official] xavierh Mandriva 2 11-15-2004 07:49 AM
MDK 10 Official equinox Mandriva 1 04-14-2004 01:34 PM
mdk 10 official Rom Raptor Mandriva 1 03-24-2004 01:22 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Software

All times are GMT -5. The time now is 04:16 AM.

Main Menu
Advertisement
My LQ
Write for LQ
LinuxQuestions.org is looking for people interested in writing Editorials, Articles, Reviews, and more. If you'd like to contribute content, let us know.
Main Menu
Syndicate
RSS1  Latest Threads
RSS1  LQ News
Twitter: @linuxquestions
Open Source Consulting | Domain Registration