Is it still possible to find a .deb package of k9copy?
Announcement
Collapse
No announcement yet.
k9copy
Collapse
This topic is closed.
X
X
-
-
Originally posted by BubbaBlues View PostIs it still possible to find a .deb package of k9copy?
- Top
- Bottom
Comment
-
Originally posted by oshunluvr View Postmakemkv and handbrake do all I need.
by encoding DVDs to xvid or divx (mpeg2) but I tried it and I can't really tell any difference. It even lets me keep the dolby surround
audio. And now I can fit it on a cd instead of a dvd. So thanks for getting me to take a second look at it!
Now I don't have any reason at all to have Windows cluttering up my pc.Ya hear that? That's the blues callin' baby.
- Top
- Bottom
Comment
-
Cool. makemkv is a command line tool that rips straight to mkv. I prefer mp4 for my movies so I only use it when other tools fail.
If i have any complaints about Handbrake it's that there are SO many options and settings. I recommend spending some time digging around in the menus and help. For sure, you can rip in high quality. Plus you can exclude extra languages, trim the framing, etc., to make the resulting file smaller.
Funny coincidence that the day after I posted my reply, I was cleaning my office and found a stack of DVDs I own that I hadn't added to my media server - like 20 of them. To save time, I used "dd" to make ISO images of each DVD while Handbrake was encoding the previous one. dd could read the DVDs faster than Handbrake could encode them so I was able to get the stack off my desk somewhat quicker and do the encoding while I was doing something else like working. I wrote a little script to burn the DVDs to ISO, then opened the ISOs with Handbrake (I still have a few to go) but I have already cleared the DVDs off of the desk. Here' the script I used to burn:
Code:#!/bin/bash # exec 1> >(logger -s -t $(basename $0)) 2>&1 # Log the script activity #variables iso=$1 dvd="/dev/sr0" target_folder="/shared/Incoming/Movies/" # disc label or input label if [[ -z $iso ]] then label=`isoinfo -d dev=/dev/sr0 | grep 'Volume id:' | awk '{print $3}'` else label=$iso fi # important numbers size=`isosize -x $dvd | awk '{gsub(/,/, "", $3); print $3} '` block=`isosize -x $dvd | awk '{print $6}'` #tell me what you're doing echo $label $size $block #do it dd if=$dvd of=$target_folder$label status=progress bs=$block count=$size #spit it out eject -T sr0
./rip2iso COOL_HAND_LUKE
Then the script reads the size of the actual data and the block size (99% it's 2048, but you never know for sure) and copies the disc.
If the DVD label is OK, then I invoke the script without any name and the script uses the DVD label as the ISO name.
I didn't bother verifying checksums because I knew I'd be processing all of them with Handbrake and I would know right away if one was bad.Last edited by oshunluvr; Aug 25, 2020, 12:46 PM.
- Top
- Bottom
Comment
-
*** makemkv NOTE ***
If one wanted makemkv, the cli tool is here: https://launchpad.net/~heyarje/+arch...u/makemkv-beta
There is also a GUI version in the snapstore.
- Top
- Bottom
Comment
Comment