Are there any Perl modules or combination of modules to create DVD compliant ISOs? This will run on Linux and I'm not concerned about portability. What I'm looking to do is create a DVD compliant ISO from a directory that contains a VIDEO_TS directory structure. The solution would not need to rip an actual DVD.
What I currently run is:
genisoimage -V 'Name_of_DVD' -dvd-video -o dvd.iso /some_directory
I am aware of Perl ability to run external commands:
system function
exec function
backticks (``) operator
open function
There is also CPAN the CPAN module Filesys::MakeISO::Driver::Mkisofs
which uses genisoimage/mkisofs. What I specifically want is a solution that does NOT use linux/OS commands. If there are no such solutions or the solution is overly complex then please state that. Thanks.