Search found 8 matches
- Thu Dec 03, 2020 11:02 pm
- Forum: MakeMKV for Linux
- Topic: Question to all: MakeMKV without GUI, console only
- Replies: 42
- Views: 226186
Re: Question to all: MakeMKV without GUI, console only
I have automated the process so all I have to do is drop a disk in and close the tray, when complete i get three audible beeps and the tray opens!
- Sun Sep 22, 2019 1:08 am
- Forum: MakeMKV for Linux
- Topic: MakeMKV problems after reinstall
- Replies: 1
- Views: 11032
Re: MakeMKV problems after reinstall
One more important thing to add, I am getting a bunch of I/O errors in my logs as well.
20:47:50 kernel: Buffer I/O error on dev sr0, logical block 3726593, async page read
20:47:50 kernel: print_req_error: I/O error, dev sr0, sector 14906372 flags 0
20:47:49 kernel: Buffer I/O error on dev sr0 ...
20:47:50 kernel: Buffer I/O error on dev sr0, logical block 3726593, async page read
20:47:50 kernel: print_req_error: I/O error, dev sr0, sector 14906372 flags 0
20:47:49 kernel: Buffer I/O error on dev sr0 ...
- Sun Sep 22, 2019 12:44 am
- Forum: MakeMKV for Linux
- Topic: MakeMKV problems after reinstall
- Replies: 1
- Views: 11032
MakeMKV problems after reinstall
Decided to add a new set of drives to my Ubuntu box and give it a clean reinstall as it's been a number of years, unfortunately MakeMKV stopped working with the reinstall - I searched the board for suggestions, and saw one suggesting an Admin needed to call MakeMKV, unfortunately that didn't do the ...
- Wed Aug 03, 2016 2:42 am
- Forum: MakeMKV for Linux
- Topic: Can't read AACS VID from disc
- Replies: 5
- Views: 17877
Re: Can't read AACS VID from disc
Are you also on Ubuntu 16.04 TLS? I was considering upgrading this weekend but will hold off if this is a release issue.FoxRaynard wrote:I'm having the exact same issue. I switched off automounting but I'm still getting the error messages
- Mon Aug 01, 2016 11:50 am
- Forum: MakeMKV for Linux
- Topic: Make New Folder in Default Output Location and Auto Naming
- Replies: 2
- Views: 13138
Re: Make New Folder in Default Output Location and Auto Nami
You're on Linux and using a UI? Perhaps you need to just script this out:
#Variables
OUTPUT_DIR="/movies"
SOURCE_DRIVE="/dev/sr0"
#Get Disc Label
DISC_TITLE=`blkid -o value -s LABEL $SOURCE_DRIVE`
# Replace spaces with underscores
DISC_TITLE=${DISC_TITLE// /_}
#Make the Directory
mkdir $OUTPUT ...
#Variables
OUTPUT_DIR="/movies"
SOURCE_DRIVE="/dev/sr0"
#Get Disc Label
DISC_TITLE=`blkid -o value -s LABEL $SOURCE_DRIVE`
# Replace spaces with underscores
DISC_TITLE=${DISC_TITLE// /_}
#Make the Directory
mkdir $OUTPUT ...
- Mon Aug 01, 2016 1:25 am
- Forum: General MakeMKV discussion
- Topic: Disc Titles
- Replies: 2
- Views: 11683
Re: Disc Titles
Why don't you just parse this out and make it part of an array? Then as you loop through each track you can rename them as you're working...
I would start by parsing for only the lines with titlename in them, and then trimming them on the > before the name, and the < after the name. Once you have ...
I would start by parsing for only the lines with titlename in them, and then trimming them on the > before the name, and the < after the name. Once you have ...
- Mon Aug 01, 2016 1:19 am
- Forum: General MakeMKV discussion
- Topic: Feature Request - Audio Tone When Processing is Complete
- Replies: 3
- Views: 10107
Re: Feature Request - Audio Tone When Processing is Complete
What OS are you on? This should be easily added with some scripting...Snickers wrote:It would be nice to have an audio tone when the program has completed processing the DVD's. This way I could go do something else and have it alert me when it's ready to upload the MKV file to my hard drive.
- Mon Aug 01, 2016 1:08 am
- Forum: MakeMKV for Linux
- Topic: Shell Scripts
- Replies: 0
- Views: 9712
Shell Scripts
Can we get a sticky post to share shell scripts? It could be a big help for those getting started, and might even get improved by the rest of the community.
Mine below -> This started from the copy found here https://pathar.tl/blog/the-ultimate-aut ... g-machine/
#!/bin/bash
OUTPUT_DIR="/movies ...
Mine below -> This started from the copy found here https://pathar.tl/blog/the-ultimate-aut ... g-machine/
#!/bin/bash
OUTPUT_DIR="/movies ...