PDA

View Full Version : vobcopy or dvdbackup working???


ldormon
3rd January 2005, 10:44 PM
All

Anyone got any of the above working? If I try and compile either of them I get :-

[leed@pc vobcopy-0.5.14]$ make
cc -o vobcopy vobcopy.o dvd.o -ldvdread -L/usr/lib64
/usr/bin/ld: skipping incompatible /usr//lib/libdvdread.so when searching for -ldvdread
/usr/bin/ld: skipping incompatible /usr//lib/libdvdread.a when searching for -ldvdread
/usr/lib/gcc/x86_64-redhat-linux/3.4.2/../../../../lib64/libdvdread.so: undefined reference to `dlclose'
/usr/lib/gcc/x86_64-redhat-linux/3.4.2/../../../../lib64/libdvdread.so: undefined reference to `dlopen'
/usr/lib/gcc/x86_64-redhat-linux/3.4.2/../../../../lib64/libdvdread.so: undefined reference to `dlsym'
collect2: ld returned 1 exit status
make: *** [vobcopy] Error 1

If I use the mandrake x86_64 vobcopy package I get the same libdvdread.so: undefined reference to `dlopen' error

This is on FC3 by the way

Cheers
Lee

macemoneta
5th January 2005, 04:50 AM
I use DVDrip, and it works just fine. You can get it via:

yum -y install perl-Video-DVDRip

It's in the FreshRPMS repository.

trentonknight
12th May 2005, 09:30 PM

#You can try tccat instead, and it's faster than vobcopy!!
tccat -i /dev/hdc -T t -L | tcextract -i vob -x mpeg2 > ofile.m2v
tccat -i /dev/hdc -T t -L | tcextract -t vob -x ac3 -a 0 > ofile.ac3

#I have had some block failures on certain cd's but it should work fine for you, if you find an answer to my #block failure's please post it, thank's. I can give you the rest of my script if it will help in creating a dvd-r 9 #to 5 type.
#If you decide to use this script you probably allready know but you can change the 1.5 which is 75% to
#whatever size you want, beyond 2.0 I think it begins to degrade the video, smaller number=biger file.
#this script is great for backing up personal movies!
tcrequant -i ofile.m2v -o movie.m2v -f 1.5
################################################## ############
echo "Multiplexing media audio back into video file..."
mplex -f 8 -o final.mpg movie.m2v ofile.ac3
################################################## #############
### you may want to write more or less chapters in the script, it's really up to you I just put 10:00 to 1:40:00
echo "Now making chapters for media backup..."
dvdauthor -o dvd -c 10:00,15:00,20:00,25:00,30:00,35:00,40:00,45:00,50 :00,55:00,1:00:00,1:05:00,1:10:00,1:15:00,1:20:00, 1:25:00,1:30:00,1:35:00,1:40:00 final.mpg
################################################## #############
dvdauthor -T -o dvd
echo "don't put you face near the dvd drive it''s about to open!"
eject -r
###the growisofs command will create the iso and burn to dvd-r at the same time, it's sweet!
echo "Now use growisofs -Z /dev/dvd -R -J /some/files"
echo "Or K3b, growisofs is faster."
echo "have a good one bro how this helped"
###any troubles email me at trentonknight@operamail and I'll try and help .