Hello,
I stumbled across some minor problems yesterday, when I wanted to make DVDs of some avi files.
The first problem occurred on line 6300:
cd $currDir
The script bailed out since the directory I was working in/with contained spaces. Quoting $currDir solved the problem.
The second problem was when the DVD file structure were to be created, and dvdauthor complained about widescreen="nopanscan". Reading some forum posts, I found out that dvdauthor recently was made stricter when using 4:3 format (which I did). I'm using dvdauthor 0.6.14, by the way. The solution to this was to add some if statements, which - if $ASPECT is 4:3 - removed the creation of the
<video widescreen="nopanscan" />
lines, and the widescreen="nopanscan" from the <video ... /> lines defining the aspect and resolution, in the $XMLFILE.
Here is a patch solving these problems, if you'll accept it.
Thank you for a nifty tool :)
Patch for the problems described above