fib0by
21st March 2008, 08:37
Let's say I want to generate a very trivial Blu-Ray image out of several AVC files:
- there are no menus
- there is only one title
- the title has several chapters, each chapter corresponds to one AVC file
What is the easiest way to do this? Is there a scriptable (non-GUI) way?
On Linux, to generate a similarly simple DVD image, I could just create a skeleton XML file:
<dvdauthor>
<vmgm />
<titleset>
<titles>
<pgc>
<vob file="file1.vob" />
<vob file="file2.vob" />
<vob file="file3.vob" />
</pgc>
</titles>
</titleset>
</dvdauthor>
Then run dvdauthor from the command line:
dvdauthor -o MOVIE_NAME -x skel.xml
Can something similar be done for Blu-Ray, either on Windows or on Linux?
- there are no menus
- there is only one title
- the title has several chapters, each chapter corresponds to one AVC file
What is the easiest way to do this? Is there a scriptable (non-GUI) way?
On Linux, to generate a similarly simple DVD image, I could just create a skeleton XML file:
<dvdauthor>
<vmgm />
<titleset>
<titles>
<pgc>
<vob file="file1.vob" />
<vob file="file2.vob" />
<vob file="file3.vob" />
</pgc>
</titles>
</titleset>
</dvdauthor>
Then run dvdauthor from the command line:
dvdauthor -o MOVIE_NAME -x skel.xml
Can something similar be done for Blu-Ray, either on Windows or on Linux?