What's wrong with this xml for dvdauthor? I just would like to create a simple dvd with only the movie, starting from a .mpeg. I always get the "no titles defined" error:
<vmgm>
<menus>
<video format="pal"></video>
<pgc entry="title">
<vob file="e:\Borotalco.mpg" chapters="0,4:07,7:06,,11:30,18:52,21:09,,24:59,27 :28,40:10,55:00,67:01,76:03,96:10"></vob>
</pgc>
</menus>
</vmgm>
+ Reply to Thread
Results 1 to 7 of 7
-
-
You must define at least on titleset with one title:
Code:<?xml version="1.0" encoding="utf-8"?> <dvdauthor dest="e:\DVD"> <vmgm> </vmgm> <titleset> <titles> <pgc entry="title"> <vob file="e:\Borotalco.mpg" chapters="0,4:07,7:06,11:30,18:52,21:09,24:59,27:28,40:10,55:00,67:01,76:03,96:10"></vob> </pgc> </titles> </titleset> </dvdauthor>
GUI for dvdauthor:
https://www.videohelp.com/~gfd/ -
i get the error:
entry title is not allowed for menu type VTS
what does it mean? -
Sorry, I mixed the pgp entries of your post with one of my own projects...
Just replace it with
Code:<?xml version="1.0" encoding="utf-8"?> <dvdauthor dest="e:\DVD"> <vmgm> </vmgm> <titleset> <titles> <pgc> <vob file="e:\Borotalco.mpg" chapters="0,4:07,7:06,11:30,18:52,21:09,24:59,27:28,40:10,55:00,67:01,76:03,96:10"></vob> </pgc> </titles> </titleset> </dvdauthor>
GUI for dvdauthor:
https://www.videohelp.com/~gfd/ -
i got a working dvd but with three titles, the first and the second loop indefinitely and last about 3 seconds, the third is the good one.What could be wrong?
-
I don't know... I would need at least the author.xml file and the log from dvdauthor.
GUI for dvdauthor:
https://www.videohelp.com/~gfd/
Similar Threads
-
CLI to XML
By eon_designs in forum Video ConversionReplies: 1Last Post: 29th Apr 2010, 10:50 -
Which to use, DVDAuthorgui or "GUI for dvdauthor" ? Or DVDauthor in batch ?
By halsboss in forum Authoring (DVD)Replies: 2Last Post: 1st Feb 2010, 11:00 -
DVDAuthor XML subtitle pre command syntax
By Advocas in forum Authoring (DVD)Replies: 0Last Post: 29th Mar 2009, 12:51 -
Transport stream for XML?
By TrupsT in forum Video Streaming DownloadingReplies: 1Last Post: 30th Jan 2009, 11:25 -
DriveImage XML
By blockie@sbcglobal.ne in forum ComputerReplies: 2Last Post: 25th Jul 2008, 16:25