Convert backup to ISO
Convert backup to ISO
Hello,
What is the best tool/app to use to convert a backup folder from MakeMKV (BDMV) to an ISO file, on a Mac?
Thanks!
What is the best tool/app to use to convert a backup folder from MakeMKV (BDMV) to an ISO file, on a Mac?
Thanks!
Re: Convert backup to ISO
I almost never have the need to convert a MakeMKV backup into an .iso, but it can be done with the tools built into macOS. Disk Utility can create an image from the backup folder. In my testing I've selected the DVD/CD Master format which produces an image with the extension .cdr. This is a Mac specific image format.
The next step is to convert from the .cdr format to an .iso file written with the UDF filesystem since that's what blu-rays use. You can do this by using the hdiutil command in Terminal.
Substitute the appropriate filenames for the output filename and the source filename.
The next step is to convert from the .cdr format to an .iso file written with the UDF filesystem since that's what blu-rays use. You can do this by using the hdiutil command in Terminal.
Code: Select all
hdiutil makehybrid -udf -o outputfile.iso sourcefile.cdr
Re: Convert backup to ISO
Is it better to create the image from the MakeMKC backup folder, or just create the image in disk utility directly from the disk? Does it matter? Thanks!
Re: Convert backup to ISO
If you do it from dd (the command line program to image to ISO) off the disc, you have to be careful and understand the limitations. LibreDrive MUST be active for it to work on UHD and a lot of blu-rays because of bus encryption. LibreDrive will disable it, allowing you to make a protected ISO. But understand that the ISO is still going to be AACS encrypted. But I created protected ISOs myself until I'm sure my MKV is good to go. But make sure LibreDrive is active when you create the ISO and you should be good.
Re: Convert backup to ISO
Like SamuriHL says, making an ISO directly from the disk is not as straight forward as it seems. You can avoid a lot of complication by making it from a decrypted MakeMKV backup.
Out of curiosity, why are you interested in making such a thing in the first place?
Out of curiosity, why are you interested in making such a thing in the first place?
Re: Convert backup to ISO
I'm wanting to create an ISO file for my media player for certain discs.
I'd like to use MakeMKV to do this if I can, so just looking for the steps to do so.
It seems like I should do this:
1. Create backup BDMV structure of disc using MakeMKV
2. Create Disk Utility to create an image of the backup folder - I'm not exactly sure how to do this, as I've only seen options in Disk Utility to select the hard drive or disk drive. How can I point it to the BDMV folders?
3. Convert the .cdr file to a .iso
I didn't understand anything SamuriHL said, lol. Sorry!
I'd like to use MakeMKV to do this if I can, so just looking for the steps to do so.
It seems like I should do this:
1. Create backup BDMV structure of disc using MakeMKV
2. Create Disk Utility to create an image of the backup folder - I'm not exactly sure how to do this, as I've only seen options in Disk Utility to select the hard drive or disk drive. How can I point it to the BDMV folders?
3. Convert the .cdr file to a .iso
I didn't understand anything SamuriHL said, lol. Sorry!
Re: Convert backup to ISO
It'll probably work best if you make sure the checkbox for decrypt is checked when you use MakeMKV to create a backup.
Follow the Disk Utility link from my earlier post and scroll down to the section titled: Create a disk image from a folder or connected device
Re: Convert backup to ISO
Got it!
I'm making the image from the folder. Is "DVD/CD master" the correct option to select for the image format?
After that I'll run your command to convert it to ISO.
I've also seen this command referenced. Should I still use yours?
cd ~/Desktophdiutil makehybrid -iso -joliet -o Test.iso Test.cdr
Thanks so much!
I'm making the image from the folder. Is "DVD/CD master" the correct option to select for the image format?
After that I'll run your command to convert it to ISO.
I've also seen this command referenced. Should I still use yours?
cd ~/Desktophdiutil makehybrid -iso -joliet -o Test.iso Test.cdr
Thanks so much!
Re: Convert backup to ISO
I'll translate what I said. Creating an iso directly from the disc no workie for your particular use case. Create one from a decrypted folder backup.
Sent from my SM-G998U1 using Tapatalk
Sent from my SM-G998U1 using Tapatalk
Re: Convert backup to ISO
Joliet is another common file system used on optical discs. Just about every platform reads it which makes it handy as a generic way to put data on an optical disc and have all kinds of computers be able to read it. Blu-rays use UDF, however. It would really be dependent on your player if it would read a blu-ray iSO written on with a joliet filesystem instead of UDF.
UDF is probably the right answer for a blu-ray ISO. Joliet is the right answer if you're making an ISO of data that you want to be able to read on any generic computer (although this scenario is almost assuredly better served by getting a USB stick & putting your files on there).
Re: Convert backup to ISO
I tried both for the disc I'm attempting - Atmos demo disc, for playing on a Zidoo z1000 pro.dcoke22 wrote: ↑Fri Feb 10, 2023 2:55 amJoliet is another common file system used on optical discs. Just about every platform reads it which makes it handy as a generic way to put data on an optical disc and have all kinds of computers be able to read it. Blu-rays use UDF, however. It would really be dependent on your player if it would read a blu-ray iSO written on with a joliet filesystem instead of UDF.
UDF is probably the right answer for a blu-ray ISO. Joliet is the right answer if you're making an ISO of data that you want to be able to read on any generic computer (although this scenario is almost assuredly better served by getting a USB stick & putting your files on there).
UDF - the loading screen spinner appeared and just spun forever
Joliet - Got a message saying "Can't play video"
Any other ideas?
Re: Convert backup to ISO
Re: Convert backup to ISO
I'm not familiar with the tool you're using to convert to ISO but it really should be UDF 2.5 when creating a blu-ray/uhd ISO. Is there a way to specify that with this tool?
Re: Convert backup to ISO
I'm not sure. I'm looking for any way to convert the MakeMKV decrypted backup to ISO on a Mac. Right now I'm using Disk Utility to create a .cdr image from the folder and then the hdiutil command line to convert that to ISO, and haven't been able to get the ISO file to play on the Zidoo. I'm open to other methods/options!