
Originally Posted by
digicube
It's probably due to the
avisynth filters in the avs script that is causing the crash when
AVStoDVD tries to create motion thumbnails. I should just stick to text menus or no menu at all.
You are probably correct. Using an AviSynth script as the source can be problematic. (Interestingly early versions of AVStoDVD did not accept AVS scripts as the source despite the name of the software)
Why don't you try to move your AviSynth filters you use in the source script into AVStoDVD? This is easy to do in the "AviSynth" tab of "View/Edit Title Settings". I do this by inserting a block like this after the Video = Video.ConvertToYV12() command:
Code:
Last = Video
{My AviSynth video filters}
Video = Last
Cheers
manolito