LinuxQuestions.org
Download your favorite Linux distribution at LQ ISO.
Go Back   LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware
User Name
Password
Slackware This Forum is for the discussion of Slackware Linux.

Notices


Reply
  Search this Thread
Old 12-20-2010, 07:45 PM   #1
lpallard
Senior Member
 
Registered: Nov 2008
Posts: 1,052

Rep: Reputation: Disabled
Transfering DVD and Blu Ray discs to my Slackware machine


Hi there!

I searched these forums for a clear and simple method to copy my DVD's and bluray discs to my server but did not find anything. I am only searching to copy the content, not interested in transcoding or converting (for now) as I have PLENTY of storage space and prefer to keep the native disc quality even if this means huge files...

Basically, vobcopy used to work, but for whatever reason, on all my machines, it terminates with some errors and does not work. I tried several discs and all the same, proof that the discs are not the problem. Maybe a bug in vobcopy?... anyway, what you guys are using?

Also having a DVD structure on my hard drive is no problem. VLC plays these very well so its OK for me.

Any suggestions?
 
Old 12-20-2010, 08:00 PM   #2
Jeebizz
Senior Member
 
Registered: May 2004
Distribution: Slackware15.0 64-Bit Desktop, Debian 11 non-free Toshiba Satellite Notebook
Posts: 4,282

Rep: Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413
Quote:
Originally Posted by lpallard View Post
Hi there!

I searched these forums for a clear and simple method to copy my DVD's and bluray discs to my server but did not find anything. I am only searching to copy the content, not interested in transcoding or converting (for now) as I have PLENTY of storage space and prefer to keep the native disc quality even if this means huge files...

Basically, vobcopy used to work, but for whatever reason, on all my machines, it terminates with some errors and does not work. I tried several discs and all the same, proof that the discs are not the problem. Maybe a bug in vobcopy?... anyway, what you guys are using?

Also having a DVD structure on my hard drive is no problem. VLC plays these very well so its OK for me.

Any suggestions?
Actually it could be the discs, if you buy recent DVDs they usually come with more hardened encryption such as ARccOS and CPPM.

I never used VOBCOPY but if it only works with non encrypted discs, then try looking for rippers under linux that can handle copy protected discs.
 
Old 12-20-2010, 08:37 PM   #3
lpallard
Senior Member
 
Registered: Nov 2008
Posts: 1,052

Original Poster
Rep: Reputation: Disabled
Yeah I dont know whats going on with vobcopy thing, it took 3 hours to do 40% of a simple 4.7GB dvd... nonsense.

I will look at other rippers...

I thought this kind of operation would be pretty straight forward with linux but its not the case...

Anybody ?
 
Old 12-20-2010, 08:47 PM   #4
disturbed1
Senior Member
 
Registered: Mar 2005
Location: USA
Distribution: Slackware
Posts: 1,133
Blog Entries: 6

Rep: Reputation: 224Reputation: 224Reputation: 224
I use K9copy and MakeMKV. MakeMKV is what I use when I don't plan on transcoding to another format.

For hard to rip discs with advance structure type copy protection (blank vobu's, bogus title sets ...) mencoder and MakeMKV do the job just fine, K9coy does fail, but rarely. In the past I had to run DVDFab either through Wine or a VM. That's no longer necessary though.
Code:
mencoder -ovc copy -oac copy -of mpeg -mpegopts format=dvd:tsaf -aid 128 dvdnav://1 -o DVD.mpg
Vobcopy does not use dvdnav. K9copy and the mencoder scriptlet above, use dvdnav, which allows the program to follow linking and switching title sets.

Last edited by disturbed1; 12-20-2010 at 08:48 PM.
 
Old 12-20-2010, 09:45 PM   #5
kite
Member
 
Registered: Aug 2003
Location: Shenzhen, China
Distribution: Slackware
Posts: 306

Rep: Reputation: 47
For DVD movies, I simply use the following method to mirror isos.

dd if=/dev/sr0 of=/tmp/DVD.iso

DVD.iso could be played using mplayer(mplayer dvd://1 -dvd-device), xine, vlc or xbmc directly.
 
Old 12-21-2010, 02:50 AM   #6
Keith Hedger
Senior Member
 
Registered: Jun 2010
Location: Wiltshire, UK
Distribution: Void, Linux From Scratch, Slackware64
Posts: 3,211

Rep: Reputation: 868Reputation: 868Reputation: 868Reputation: 868Reputation: 868Reputation: 868Reputation: 868
I use dvdbackup ( it's on slackbuilds.org ) like this:
Code:
dvdbackup -i /dev/dvd -M -o .
This will create a complete copy of the dvd in the current directory, there are a lot more options. You will probably need libdvdcss as well
 
Old 12-21-2010, 11:36 AM   #7
lpallard
Senior Member
 
Registered: Nov 2008
Posts: 1,052

Original Poster
Rep: Reputation: Disabled
So many useful suggestions! I already tried makemkv and it seems to work just fine. I like the very simple interface and straight forward utilization but I wonder how capable it is with encrypted DVD's... I tried on two DVD's not encrypted (as far as I can tell) and worked just fine.

I'll try all the other suggestions and post back.
 
Old 12-21-2010, 11:49 AM   #8
silvyus_06
Member
 
Registered: Oct 2010
Distribution: Ubuntu 10.04 , Linux Mint Debian Edition , Microsoft Windows 7
Posts: 390

Rep: Reputation: 50
Hey there.

The user kite is right with the command dd. Seems on point. i never used it though.

what i might change from that command would be the location and the name .. for example ..

Quote:
dd if=/dev/sr0 of=/home/the_username_you_have/the_name_of_the_dvd_that_you_want.iso


but yeah it is easier to put it in tmp as you wouldnt need to modify anything.

ANYWAYS , i've been recently backing up some dvds making .iso files f them using brasero's copy disc function with the option to image file.
It's a nice easy graphical way to make the iso and you can easily select the location of your DVD.
It seems pretty fast also.

So yeah ... try that

if you don't then the dd command as kite says is the best option to use.

Edit:

now i saw Ketih_Hedger reply. yes. with brasero you would also need libdvdcss.so.2 .

A easy way to do that would be here

Last edited by silvyus_06; 12-21-2010 at 11:56 AM.
 
Old 12-21-2010, 05:20 PM   #9
lpallard
Senior Member
 
Registered: Nov 2008
Posts: 1,052

Original Poster
Rep: Reputation: Disabled
Just to be sure we are all talking about the same thing, I am talking about movies dvd's, not data dvd's.
 
Old 12-21-2010, 05:29 PM   #10
Jeebizz
Senior Member
 
Registered: May 2004
Distribution: Slackware15.0 64-Bit Desktop, Debian 11 non-free Toshiba Satellite Notebook
Posts: 4,282

Rep: Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413Reputation: 1413
I don't see how dd can successfully copy a movie dvd; you might create an ISO from that command but it is highly unlikely that the iso will be without errors, due to copy protection.
 
Old 12-21-2010, 05:42 PM   #11
lpallard
Senior Member
 
Registered: Nov 2008
Posts: 1,052

Original Poster
Rep: Reputation: Disabled
Jeebizz, good point. Thats why I posted back to indicate that I was only interested in movie DVD's and Bluray discs... no data DVD's.

There is already enough roadblocks and limitations to perform such tasks in linux without having confusion as well...

I just realized that makemkv is a demo only? 50 days left!?! Whats that!?
 
Old 12-21-2010, 05:46 PM   #12
disturbed1
Senior Member
 
Registered: Mar 2005
Location: USA
Distribution: Slackware
Posts: 1,133
Blog Entries: 6

Rep: Reputation: 224Reputation: 224Reputation: 224
Quote:
Originally Posted by lpallard View Post
Jeebizz, good point. Thats why I posted back to indicate that I was only interested in movie DVD's and Bluray discs... no data DVD's.

There is already enough roadblocks and limitations to perform such tasks in linux without having confusion as well...

I just realized that makemkv is a demo only? 50 days left!?! Whats that!?
I


It's weird how they do that. Before that time period is up, another demo will be released. It can be a slight PITA to update once every 2 months or so, but at least you always have the newest version with the current updates.
 
Old 12-21-2010, 06:08 PM   #13
lpallard
Senior Member
 
Registered: Nov 2008
Posts: 1,052

Original Poster
Rep: Reputation: Disabled
Are you aware of an equivalent to makemkv? or should I ask can we bypass that? basically, Can I assume makemkv is not released under opensource? I am confused with licensed stuff in linux...
 
Old 12-21-2010, 06:16 PM   #14
silvyus_06
Member
 
Registered: Oct 2010
Distribution: Ubuntu 10.04 , Linux Mint Debian Edition , Microsoft Windows 7
Posts: 390

Rep: Reputation: 50
have you tried brasero ?

i copied 4 movie dvds that i still have in my computer.

i think they were pretty much protected ... The movies were Going the distance , Passengers , Sex and the city 2

And a national geographic dvd about global warming .

Are any of those protected ? For me it worked. i just had to install libdvdcss.so.2 to copy the double layered dvds .. (one of them was sex and the city)
 
Old 12-21-2010, 06:17 PM   #15
disturbed1
Senior Member
 
Registered: Mar 2005
Location: USA
Distribution: Slackware
Posts: 1,133
Blog Entries: 6

Rep: Reputation: 224Reputation: 224Reputation: 224
Only the GUI is opensource. That's why there's two source packages. The decrypting library itself is not opensource.

You can give k9copy a try. You can change the settings to do a stream copy instead of transcoding. Or use mencoder.
 
  


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
Error writing blu ray data discs with k3b? elfoozo Linux - Software 4 12-09-2010 08:06 AM
Problem with blu-ray in Slackware 13.0 Monkey114 Linux - Newbie 7 01-01-2010 05:02 PM
Blu-ray discs Won't Mount for Reading on openSUSE 10.3 rslucchese Linux - Hardware 4 07-07-2009 10:46 PM
LXer: Michael Bay: 'HD DVD vs Blu-ray is a Microsoft conspiracy' LXer Syndicated Linux News 0 12-10-2007 05:40 PM
LXer: ISO images dumped from PS3 Blu-ray discs via Linux LXer Syndicated Linux News 0 11-28-2006 01:03 PM

LinuxQuestions.org > Forums > Linux Forums > Linux - Distributions > Slackware

All times are GMT -5. The time now is 06:31 PM.

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