Slackware This Forum is for the discussion of Slackware Linux.
|
Notices |
Welcome to LinuxQuestions.org, a friendly and active Linux Community.
You are currently viewing LQ as a guest. By joining our community you will have the ability to post topics, receive our newsletter, use the advanced search, subscribe to threads and access many other special features. Registration is quick, simple and absolutely free. Join our community today!
Note that registered members see fewer ads, and ContentLink is completely disabled once you log in.
Are you new to LinuxQuestions.org? Visit the following links:
Site Howto |
Site FAQ |
Sitemap |
Register Now
If you have any problems with the registration process or your account login, please contact us. If you need to reset your password, click here.
Having a problem logging in? Please visit this page to clear all LQ-related cookies.
Get a virtual cloud desktop with the Linux distro that you want in less than five minutes with Shells! With over 10 pre-installed distros to choose from, the worry-free installation life is here! Whether you are a digital nomad or just looking for flexibility, Shells can put your Linux machine on the device that you want to use.
Exclusive for LQ members, get up to 45% off per month. Click here for more info.
|
 |
|
12-20-2010, 07:45 PM
|
#1
|
Senior Member
Registered: Nov 2008
Posts: 1,052
Rep: 
|
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?
|
|
|
12-20-2010, 08:00 PM
|
#2
|
Senior Member
Registered: May 2004
Distribution: Slackware15.0 64-Bit Desktop, Debian 11 non-free Toshiba Satellite Notebook
Posts: 4,282
|
Quote:
Originally Posted by lpallard
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.
|
|
|
12-20-2010, 08:37 PM
|
#3
|
Senior Member
Registered: Nov 2008
Posts: 1,052
Original Poster
Rep: 
|
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 ?
|
|
|
12-20-2010, 08:47 PM
|
#4
|
Senior Member
Registered: Mar 2005
Location: USA
Distribution: Slackware
Posts: 1,133
|
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.
|
|
|
12-20-2010, 09:45 PM
|
#5
|
Member
Registered: Aug 2003
Location: Shenzhen, China
Distribution: Slackware
Posts: 306
Rep:
|
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.
|
|
|
12-21-2010, 02:50 AM
|
#6
|
Senior Member
Registered: Jun 2010
Location: Wiltshire, UK
Distribution: Void, Linux From Scratch, Slackware64
Posts: 3,211
|
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
|
|
|
12-21-2010, 11:36 AM
|
#7
|
Senior Member
Registered: Nov 2008
Posts: 1,052
Original Poster
Rep: 
|
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.
|
|
|
12-21-2010, 11:49 AM
|
#8
|
Member
Registered: Oct 2010
Distribution: Ubuntu 10.04 , Linux Mint Debian Edition , Microsoft Windows 7
Posts: 390
Rep:
|
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.
|
|
|
12-21-2010, 05:20 PM
|
#9
|
Senior Member
Registered: Nov 2008
Posts: 1,052
Original Poster
Rep: 
|
Just to be sure we are all talking about the same thing, I am talking about movies dvd's, not data dvd's.
|
|
|
12-21-2010, 05:29 PM
|
#10
|
Senior Member
Registered: May 2004
Distribution: Slackware15.0 64-Bit Desktop, Debian 11 non-free Toshiba Satellite Notebook
Posts: 4,282
|
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.
|
|
|
12-21-2010, 05:42 PM
|
#11
|
Senior Member
Registered: Nov 2008
Posts: 1,052
Original Poster
Rep: 
|
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!?
|
|
|
12-21-2010, 05:46 PM
|
#12
|
Senior Member
Registered: Mar 2005
Location: USA
Distribution: Slackware
Posts: 1,133
|
Quote:
Originally Posted by lpallard
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.
|
|
|
12-21-2010, 06:08 PM
|
#13
|
Senior Member
Registered: Nov 2008
Posts: 1,052
Original Poster
Rep: 
|
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...
|
|
|
12-21-2010, 06:16 PM
|
#14
|
Member
Registered: Oct 2010
Distribution: Ubuntu 10.04 , Linux Mint Debian Edition , Microsoft Windows 7
Posts: 390
Rep:
|
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)
|
|
|
12-21-2010, 06:17 PM
|
#15
|
Senior Member
Registered: Mar 2005
Location: USA
Distribution: Slackware
Posts: 1,133
|
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.
|
|
|
All times are GMT -5. The time now is 06:31 PM.
|
LinuxQuestions.org is looking for people interested in writing
Editorials, Articles, Reviews, and more. If you'd like to contribute
content, let us know.
|
Latest Threads
LQ News
|
|