Search found 10 matches
- Wed Jan 27, 2021 12:27 am
- Forum: MakeMKV for Linux
- Topic: UHD Friendly in linux
- Replies: 3
- Views: 1601
Re: UHD Friendly in linux
Yeah, both of mine work just fine on Gentoo.
- Wed Jan 20, 2021 8:26 am
- Forum: MakeMKV for Linux
- Topic: Can't decrypt iso with keydb
- Replies: 2
- Views: 2920
Re: Can't decrypt iso with keydb
MakeMKV doesn't use libaacs to decrypt Blu-rays.
If the disc is that badly damaged, it might be a good idea to just replace it.
If the disc is that badly damaged, it might be a good idea to just replace it.
- Tue Jan 19, 2021 11:19 pm
- Forum: MakeMKV for Linux
- Topic: makemkvcon man page
- Replies: 0
- Views: 1550
makemkvcon man page
I wrote a man page for makemkvcon:
HTML - http://bluray.beandog.org/makemkv/man/makemkvcon.html
man page (download) - http://bluray.beandog.org/makemkv/man/makemkvcon.1
If I missed anything on there, let me know.
HTML - http://bluray.beandog.org/makemkv/man/makemkvcon.html
man page (download) - http://bluray.beandog.org/makemkv/man/makemkvcon.1
If I missed anything on there, let me know.
- Wed Nov 25, 2020 10:08 pm
- Forum: MakeMKV for Linux
- Topic: Question to all: MakeMKV without GUI, console only
- Replies: 26
- Views: 24672
Re: Question to all: MakeMKV without GUI, console only
I use it to do backups of my discs:
and as an awesome fallback for when I don't have a KEYDB.cfg entry.makemkvcon --noscan --minlength=0 -r backup --decrypt disc:0
- Mon Sep 21, 2020 5:25 am
- Forum: MakeMKV for Linux
- Topic: Please learn how to distribute packages
- Replies: 13
- Views: 14507
Re: Please learn how to distribute packages
We've got it included in our main repo just fine with Gentoo, quick glance it looks like Ubuntu and Fedora aren't that hard either. Not sure which OS the OP is talking about here.
- Thu Nov 15, 2018 10:13 am
- Forum: MakeMKV for Linux
- Topic: Starting makemkvcon through udev rule - strange behaviour
- Replies: 2
- Views: 10407
Re: Starting makemkvcon through udev rule - strange behaviour
It's an old post I know, but udev is tricky, so here I am. :) I invested a bunch of time googling and found that you can't start long living processes from udev. So i set up another ("in-between") script (run_on_disc_inserted.sh) which is called by udev and simply starts my ripping script ...
- Wed Mar 28, 2018 4:47 am
- Forum: MakeMKV for Linux
- Topic: Detect Blu-ray optical disc drive speed?
- Replies: 1
- Views: 6576
Re: Detect Blu-ray optical disc drive speed?
Okay, I figured it out. Put a Blu-ray disc in your tray (not DVD or CD, they will report different speeds), and run cdrdao: cdrecord -prcap Here's a snippet from mine: Maximum read speed: 17982 kB/s (CD 102x, DVD 12x, BD 4x) Current read speed: 17982 kB/s (CD 102x, DVD 12x, BD 4x) Maximum write spee...
- Tue Mar 06, 2018 10:14 am
- Forum: MakeMKV for Linux
- Topic: Detect Blu-ray optical disc drive speed?
- Replies: 1
- Views: 6576
Detect Blu-ray optical disc drive speed?
So, Blu-ray drives have different read speeds. Spec says a 1x can read at 32 Mbits / second, or, 4.5 megabytes.
Is there a way though to detect the read-speed of an optical drive in Linux that anyone knows of?
Is there a way though to detect the read-speed of an optical drive in Linux that anyone knows of?
- Sun Feb 18, 2018 7:52 am
- Forum: MakeMKV for Linux
- Topic: Optical Drive not being found
- Replies: 110
- Views: 176713
Re: Optical Drive not being found
Just a heads up, if you're using Gentoo, you'll need SCSI generic support in your kernel built-in or as a module (sg). Look for CONFIG_CHR_DEV_SG
Code: Select all
Device drivers -->
SCSI device support -->
<*> SCSI generic support
- Sun Feb 18, 2018 7:47 am
- Forum: MakeMKV for Linux
- Topic: Script to rip DVD / Blu-ray from any source (iso, dir, dev)
- Replies: 1
- Views: 9442
Script to rip DVD / Blu-ray from any source (iso, dir, dev)
Here's a script I wrote and use to rip all my stuff regardless of where it's at -- a device file, a directory, or an ISO I've already made, and will use the proper makemkvcon arguments. Some example usages: dvd_makemkv /dev/sr0 dvd_makemkv bluray.iso dvd_makemkv /mnt/bluray Here you go, hope this he...