Dump Submitted - Borderlands (2024)

Please post here for issues related to UHD discs
ds1972
Posts: 20
Joined: Tue Jan 18, 2022 11:32 pm

Dump Submitted - Borderlands (2024)

Post by ds1972 »

Submitted dump file MKB20_v77_Borderlands_6FB2.tgz.

...don't judge me. :P
DJRumpy
Posts: 190
Joined: Thu Aug 18, 2011 9:21 pm

Re: Dump Submitted - Borderlands (2024)

Post by DJRumpy »

No shame. I need this too. I can't recall. If the dump file has the same name, it's the same version?
dcoke22
Posts: 3047
Joined: Wed Jul 22, 2020 11:25 pm

Re: Dump Submitted - Borderlands (2024)

Post by dcoke22 »

DJRumpy wrote:
Tue Oct 22, 2024 11:56 pm
No shame. I need this too. I can't recall. If the dump file has the same name, it's the same version?
Yes. The 4 digits at the end need to be the same too.
DJRumpy
Posts: 190
Joined: Thu Aug 18, 2011 9:21 pm

Re: Dump Submitted - Borderlands (2024)

Post by DJRumpy »

Thanks. I couldn't recall if that indicated the same release. I inadvertently ended up ordering the SteeBook collection from Amazon. I can't see the disk ID on this anywhere. The packaging sucks. I thought I was going to bust the blu-ray pulling it out of the disk slot. I ended up encoding the blu-ray edition until they fix the UHD key.
ds1972
Posts: 20
Joined: Tue Jan 18, 2022 11:32 pm

Re: Dump Submitted - Borderlands (2024)

Post by ds1972 »

DJRumpy wrote:
Wed Oct 23, 2024 11:56 am
Thanks. I couldn't recall if that indicated the same release. I inadvertently ended up ordering the SteeBook collection from Amazon. I can't see the disk ID on this anywhere. The packaging sucks. I thought I was going to bust the blu-ray pulling it out of the disk slot. I ended up encoding the blu-ray edition until they fix the UHD key.
Yeah, this is the Amazon SteelBook I submitted. I didn't have the same trouble as you with the packaging, thought the "am I gonna get the disc out or break it?" thing is a real issue these days, with a LOT of packaging. The old DVD "split-pushbutton" release mechanism is still, IMHO, the best.
DJRumpy
Posts: 190
Joined: Thu Aug 18, 2011 9:21 pm

Re: Dump Submitted - Borderlands (2024)

Post by DJRumpy »

The 4K pops out without issue. It's just that weird plastic rib they put on the side of the disk. I literally had to bend the BD about an inch and a half to get it to pop off the little button holder. I'm fine with them just tucking the BD behind the left cover and leaving the UHD/4K on the right side. The design on this one is just dumb IMO. Ah well.

I do like the movie though. I never played the game or read the comic so no hate from me.
MrPenguin
Posts: 471
Joined: Thu Oct 19, 2023 11:31 pm

Re: Dump Submitted - Borderlands (2024)

Post by MrPenguin »

ds1972 wrote:
Tue Oct 22, 2024 9:37 pm
Submitted dump file MKB20_v77_Borderlands_6FB2.tgz.
The latest KEYDB.cfg file contains this entry:

Code: Select all

0x2C99F6B61028EE10BF91373CC9D721A552A6F61E = BORDERLANDS (Borderlands - Ultra HD Blu-ray™) | D | 2024-08-26
Does copying this file into MakeMKV's data directory (i.e. where MakeMKV also writes its TGZ dump files) and restarting MakeMKV help?
ds1972
Posts: 20
Joined: Tue Jan 18, 2022 11:32 pm

Re: Dump Submitted - Borderlands (2024)

Post by ds1972 »

The latest KEYDB.cfg file contains this entry:

Code: Select all

0x2C99F6B61028EE10BF91373CC9D721A552A6F61E = BORDERLANDS (Borderlands - Ultra HD Blu-ray™) | D | 2024-08-26
Does copying this file into MakeMKV's data directory (i.e. where MakeMKV also writes its TGZ dump files) and restarting MakeMKV help?
Yeah, that fixed it straight away. I didn't have the updated keydb.cfg. Cured that problem: I now have a cron job to download and "install" the current file daily.

Thanks for the help!
DJRumpy
Posts: 190
Joined: Thu Aug 18, 2011 9:21 pm

Re: Dump Submitted - Borderlands (2024)

Post by DJRumpy »

Worked for me as well. I didn't have an existing keydb file oddly enough, but copied it out there and restarted the app, and it's ripping without issue.
Joshk
Posts: 3
Joined: Sat Apr 15, 2023 11:34 pm

Re: Dump Submitted - Borderlands (2024)

Post by Joshk »

Wish i was smart enough to know where this location is to paste too! haha Hopefully they will get the dump file into makemkv soon!
MrPenguin
Posts: 471
Joined: Thu Oct 19, 2023 11:31 pm

Re: Dump Submitted - Borderlands (2024)

Post by MrPenguin »

Joshk wrote:
Thu Oct 24, 2024 12:12 am
Wish i was smart enough to know where this location is to paste too! haha Hopefully they will get the dump file into makemkv soon!
Download the ZIP file, copy it into MakeMKV's data directory (i.e. where MakeMKV also writes its TGZ dump files) and restart MakeMKV.
ds1972
Posts: 20
Joined: Tue Jan 18, 2022 11:32 pm

Re: Dump Submitted - Borderlands (2024)

Post by ds1972 »

If you're on a UNIX-like system (I'm a Mac guy), you can automate this really easily:

Open your favorite text editor, and make the following script (replacing the {PATH_TO_YOUR_MakeMKV_DATA_DIRECTORY} part as appropriate):

Code: Select all

#!/bin/bash

URL="http://fvonline-db.bplaced.net/fv_download.php?lang=eng"
DOWNLOAD_PATH="$HOME/keydb_update.zip"

wget "$URL" -O "$DOWNLOAD_PATH"
unzip -o "$DOWNLOAD_PATH" -d "$HOME"
mv "$HOME/keydb.cfg" {PATH_TO_YOUR_MakeMKV_DATA_DIRECTORY}
touch {PATH_TO_YOUR_MakeMKV_DATA_DIRECTORY}/keydb.cfg

rm "$DOWNLOAD_PATH"
Save this as updateKeydb.sh somewhere sensible. We also have to make it executable.

Open your terminal, and type:

Code: Select all

chmod +x {PATH_TO_YOUR_SCRIPT}
Now with that done, let's schedule the updates... Run the following command in the terminal:

Code: Select all

crontab -e
If you don't already have a crontab this will create a new one for you. I added the following, which runs the update script at midnight daily.

Code: Select all

0 0 * * * /bin/bash {PATH_TO_YOUR_SCRIPT}
And that's it. Now I never have to worry about not having the newest file, unless a URL or something changes.

Hope this is useful to somebody.
SandyD
Posts: 7
Joined: Sat Jan 09, 2021 8:33 pm

Re: Dump Submitted - Borderlands (2024)

Post by SandyD »

No judging here. I got it to see just how BAD it really happens to be. :D
SamuriHL
Posts: 2321
Joined: Mon Jun 14, 2010 5:32 pm

Re: Dump Submitted - Borderlands (2024)

Post by SamuriHL »

ds1972 wrote:
Fri Oct 25, 2024 7:09 pm
If you're on a UNIX-like system (I'm a Mac guy), you can automate this really easily:

...
Converted to powershell for the Windows users in the house:

Code: Select all

# Define the URL and download path
$URL = "http://fvonline-db.bplaced.net/fv_download.php?lang=eng"
$DOWNLOAD_PATH = ".\keydb_update.zip"

# Download the file
Invoke-WebRequest -Uri $URL -OutFile $DOWNLOAD_PATH

# Unzip the downloaded file
Expand-Archive -Path $DOWNLOAD_PATH -DestinationPath $HOME -Force

# Move the keydb.cfg file to the specified directory
$destinationPath = "{PATH_TO_YOUR_MakeMKV_DATA_DIRECTORY}"
Move-Item -Path "$HOME\keydb.cfg" -Destination $destinationPath

# Remove the downloaded zip file
Remove-Item -Path $DOWNLOAD_PATH -Force
Obviously you'll need to change the PATH_TO_YOUR_MakeMKV_DATA_DIRECTORY. I haven't tested this so some brave soul should test it and see if it actually works. It might. LOL

P.S. Assuming it works, you can then add it to Windows Task Scheduler to run every night so you'll have a freshly minted keydb.cfg file in your MakeMKV directory daily.
ds1972
Posts: 20
Joined: Tue Jan 18, 2022 11:32 pm

Re: Dump Submitted - Borderlands (2024)

Post by ds1972 »

SamuriHL wrote:
Fri Oct 25, 2024 9:12 pm
Converted to powershell for the Windows users in the house:
Awesome! Thanks for the assist! I'm good with UNIX and Mac, but Windows not so much...
Post Reply