Create DVD ISO from VIDEO_TS folder on macOS

By | 3 Aug 2026

As per this SuperUser answer:

Native hdiutil

hdiutil makehybrid -iso -joliet -udf -udf-version 1.02 -default-volume-name "VOLUMENAME" -o OUTPUT.iso /path/to/INPUT_FOLDERCode language: Shell Session (shell)

mkisofs

First, make sure you have mkisofs installed. It’s part of cdrtools:

brew install cdrtoolsCode language: Shell Session (shell)

Then have it generate a Video-DVD image:

mkisofs -f -dvd-video -udf -V VOLUMENAME -o OUTPUT.iso /path/to/INPUT_FOLDER

Likes

Leave a Reply

Your email address will not be published. Required fields are marked *

To respond on your own website, enter the URL of your response which should contain a link to this post's permalink URL. Your response will then appear (possibly after moderation) on this page. Want to update or remove your response? Update or delete your post and re-enter your post's URL again. (Find out more about Webmentions.)