I have an old DVD ISO image (I make DVDs of my kids), and I want to make an AVI copy to upload the funniest bits to YouTube. This is on an Ubuntu 8.04 system, your mileage may vary.
- Install dvd::rip using Synaptic
- Mount the .iso image (source):
- Create a mount point with
sudo mkdir /mnt/iso
- Mount the image with
sudo mount -o loop /path/and/file.iso /mnt/iso
Alternate: Somewhere along the line, my Thunar magically gained this ability when I right-click on the .iso icon, but I cannot remember which package made this possible...
- Create a mount point with
- Rip the DVD. Open dvd::rip.
- Preferences: I created no special folder for ripped projects; just saved to the home directory. I checked the dependencies, and had to download a mountain of them (xine, mplayer, etc) using Synaptic.
- Storage: Click 'Choose DVD image directory', and select
/mnt/iso
. Select the button for 'Encode DVD on the fly' since it's already on the hard drive. - Rip Title: Click 'Read DVD table of contents' and the chapters appear. I highlighted (CTRL + Click) the chapters I wanted to convert.
- Clip and Zoom: Click the preset menu, select 'Autoadjust - Medium Frame Size, HQ Resize'.
- Transcode: Video bitrate calculation is the size of the final file, so I can keep it small (~10 MB per minute, or ~200 MB per half hour). Finally, click 'Transcode' and wait an hour or two or five for the machine to work.
- Test the finished file to ensure it's really what you want. I had to do it a couple times, twiddling with various controls.
- Cleanup.
- Unmount the iso:
sudo umount /mnt/iso
- Remove the empty mount point:
sudo rmdir /mnt/iso
- Delete the .iso file (optional, obviously)
- Open Synaptic and get rid of all the packages you won't use again. Or use:
sudo apt-get remove dvdrip mplayer xine sudo apt-get autoremove sudo apt-get autoclean
- Unmount the iso:
The package ripmake
didn't work - tcprobe failure.
No comments:
Post a Comment