Log in

View Full Version : Avisynth: division by zero at 0 x 1081692a What is that meaning?


3S Doc
14th January 2003, 23:36
Hi folks,

I run in svd2svcd with Avisynth and the subtext.vdf tried to set a permanent sub in the movie, it encodes first fine but after looking in powerdvd I get this strange message in my movie.
When it was halfdone (the movie).

tnx.

Richard Berg
16th January 2003, 19:47
Uh oh. Can you please post your script?

sh0dan
16th January 2003, 21:28
Troubleshooting (http://www.avisynth.org/index.php?page=Troubleshooting)

"How to report bugs"

Richard Berg
16th January 2003, 21:54
Very nice! Is it linked from anywhere else? Deserves to be on the front page.

[edit] done

sh0dan
17th January 2003, 08:56
actually it is placed on the front page under "All About Scripts" :)

3S Doc
17th January 2003, 19:36
Hi all of you,

First of all, tnx for the answers, I know that my English isn't that well, (it is not my native language) and therefor I had some difficulty to find some things. Sorry if I did something stupid.

I will explain what I did.

I have here a 2 cd movie, xvid coded, and thought I will made myself with dvd2svcd a nice svcd. Before you started to yell they have there a own forum for, let me tell.

I used the Avisynth tool therein because I would have subs in that movie. Before you go to the encoding phase, you can let stop dvd2svcd, and edit the avisynth script.

I did put these lines under the lines that there stand:

LoadPlugin("C:\DVD2SVCD109b3\Avisynth\textsub.vdf")
TextSub("C:\DVD2SVCD109b3\Avisynth\my_file.ssa")

and let dvd2svcd do is thing :cool:

Well when I checked later the bin/cue file with Deamon Tools and powerdvd pro, is was a nice job. Only when I looked futher from the half movie, I get this strange message :confused:

So that are the things I did, and I put this question here because this is the Avisynt part.

tnx alot all.

3S.

DanDob
3rd February 2003, 17:40
Originally posted by 3S Doc
Hi all of you,

First of all, tnx for the answers, I know that my English isn't that well, (it is not my native language) and therefor I had some difficulty to find some things. Sorry if I did something stupid.

I will explain what I did.

I have here a 2 cd movie, xvid coded, and thought I will made myself with dvd2svcd a nice svcd. Before you started to yell they have there a own forum for, let me tell.

I used the Avisynth tool therein because I would have subs in that movie. Before you go to the encoding phase, you can let stop dvd2svcd, and edit the avisynth script.

I did put these lines under the lines that there stand:

LoadPlugin("C:\DVD2SVCD109b3\Avisynth\textsub.vdf")
TextSub("C:\DVD2SVCD109b3\Avisynth\my_file.ssa")

and let dvd2svcd do is thing :cool:

Well when I checked later the bin/cue file with Deamon Tools and powerdvd pro, is was a nice job. Only when I looked futher from the half movie, I get this strange message :confused:

So that are the things I did, and I put this question here because this is the Avisynt part.

tnx alot all.

3S.


I did not understand what i have to do if i want to change that divx->svcd and do it correct. i have that problem too that Avisynth: division by zero at 0 x 1081692a but i dont have sublities or other carbage. I just want to make that work. I have made couple of movies, but one movie have 3 parts and all of the tree parts says the same Avisynth: division by zero at 0 x 1081692a. The question is now what should i do to remove that stupid warning message and change that divx correctly to svcd.


THX very much to all...

Danny

sh0dan
3rd February 2003, 17:46
Originally posted by DanDob
THX very much to all...


If you don't post file versions and a script we cannot help you.
:logfile:

DanDob
3rd February 2003, 17:52
Originally posted by sh0dan
If you don't post file versions and a script we cannot help you.
:logfile:

I have dvd2svcd(1.1.0.build 1) program and tmpgec what the hell is that program. 2.5 professional like that. I dont have any scripts or sublities or something like that i have only splitted the movie whit nandub and inserted to dvd2svcd and prayed that it will work...

Danny

sh0dan
3rd February 2003, 18:02
Then I'd suggest you ask in the DVD2SVCD forum. I don't quite understand your workflow, since I don't know DVD2SVCD.

hakko504
3rd February 2003, 19:13
I've got bad news: It might not be an easy problem to track down.

I just came home and found the same error on an encode that had been running during the day. Unfortunately I made the mistake of closing VDM (030131) and after that I have not been able to reproduce the error. :mad:

Got some basic info though: Avisynth 2.5.0.0 dated 030121.
Mpeg2dec3 1.00 (MarcFD) dated 030119
TomsMoComp dated 030121
C3D dated 030117
VirtualDubMod 1.4.13.1 dated 030131
script:function part1()
{
Video1=Mpeg2source("<path>G2G.GaTT1.d2v")
Audio1=WavSource("<path>G2G.GaTT1 LPCM T01 48KHz.wav")
Video1.AudioDub(Audio1)
trim(0,51442)++trim(56127,118099)
return last
}

function part2()
{
Video1=Mpeg2source("<path>G2G.GaTT2.d2v")
Audio1=WavSource("<path>G2G.GaTT2 LPCM T01 48KHz.wav")
Video1.AudioDub(Audio1)
trim(0,48665)++trim(51407,0)
return last
}

function part3()
{
Video1=Mpeg2source("<path>G2G.GaTT3.d2v")
Audio1=WavSource("<path>G2G.GaTT3 LPCM T01 48KHz.wav")
Video1.AudioDub(Audio1)
trim(0,45351)
return last
}

function part4()
{
Video1=Mpeg2source("<path>G2G.GaTT4.d2v")
Audio1=WavSource("<path>G2G.GaTT4 LPCM T01 48KHz.wav")
Video1.AudioDub(Audio1)
trim(0,135671)++trim(147380,0)
return last
}

total=part1++part2++part3++part4
total=total.TomsMoComp(1,5,1).Convolution3d(preset="movieLQ").LanczosResize(352,288)
total1=total.trim(0,179622).fadeout(10)
total2=total.trim(179623,0).fadein(10)
return total2