|
|
Burn a playable DVD from a VIDEO_TS folder
Someone might could clean this up a bit, but it is functional. Paste it into the Applescript Script Editor and save as an application without startup screen. This will create a droplet on which you can drop the parent folder of your VIDEO_TS folder.
on open this_folder
tell application "Finder"
set ginfo to (get info for this_folder)
set disp_name2 to name of ginfo
set POSIX_source to POSIX path of this_folder
set POSIX_file to POSIX path of (choose folder with prompt "Choose a folder to save image in:")
display dialog "Would you like to also burn the image to DVD?" buttons {"No", "Yes"} default button 2
if button returned of result is "Yes" then
set burning to "/usr/bin/hdiutil burn -noverifyburn " & POSIX_file & "" & disp_name2 & ".iso"
else
set burning to ""
end if
end tell
do shell script ("hdiutil makehybrid -udf -udf-volume-name \"" & disp_name2 & "\" -o \"" & POSIX_file & "" & disp_name2 & ".iso\" \"" & POSIX_source & "\"")
tell me to activate
display dialog "Please insert a blank DVD"
do shell script ("" & burning & "")
tell me to activate
display dialog "DVD image/burn complete"
end openEdited on Feb 20, '10 04:33:08PM by robg
Not entirely compatible
FYI, I have tested ISO images made with hdiutil, and they don't seem to be compatible with all set-top DVD players. Be warned.
DVD Image Utility
You could check out my DVD Image Utility. It is a revised version of the above script (with mkisofs).
DVD Image Utility
This looks like a great little utility. May I suggest that you submit it to VersionTracker or MacUpdate so it is easier for people to find? |
SearchFrom our Sponsor...Latest Mountain Lion HintsWhat's New:HintsNo new hintsComments last 2 daysNo new commentsLinks last 2 weeksNo recent new linksWhat's New in the Forums?
Hints by TopicNews from Macworld
From Our Sponsors |
|
Copyright © 2014 IDG Consumer & SMB (Privacy Policy) Contact Us All trademarks and copyrights on this page are owned by their respective owners. |
Visit other IDG sites: |
|
|
|
Created this page in 0.09 seconds |
|