View Full Version : FadeIN not for 2.5X ?
DaveQB
26th May 2003, 00:25
it seems from the docs and my testing that both FadeIN and FadeIO are ot to work for version 2.50 and above.
only FadeOUT works, which is great but why not FadeIN and/or FadeIO ??
is 'dissolve' used in place of it ??
i am currently re-installing 2.08 when i need fade and then re-installing 2.50 when working with mpeg2 files etc
pardon for my ignorance if i have got this all wrong
neily
26th May 2003, 12:23
All fades work for me in 2.5. What problem are you having? Errors, or are the fades just not appearing?. What is your script?
DaveQB
27th May 2003, 01:32
oh hmmmm,
it says in the doc's (2.07 after fadein and fadeio)
my script is simply (like most of mine :D )
clip=avisource("R:\daveqb.avi")
fadeIO(clip,50)
*could be wrong, going from memory, @ work atm*
normally this fades in the first 50 frames and out the last 50 frames,
but with ver 2.50 it fades in the whole clip (9seconds) from start to finish, with finish being in full.
re-installing 2.08 and the same script works fine, (fades in at start then out at the end)
thanx
neily
27th May 2003, 12:30
Sorry DaveQB, I am at a loss to know why you are having problems. All I can suggest is the latest builds. They stand at 2.08 and 2.5.1 RC4. Get them at:
AviSynth 2 - CVS snapshot (http://cultact-server.novi.dk/kpo/avisynth/avs_cvs.html)
DaveQB
27th May 2003, 12:48
i'll try 2.51
was shy to try that as thought maybe the bugs havent been ironed out of it yet (being the latest and all)
DaveQB
27th May 2003, 13:40
installed 2.51 RC4
FadeIn("R:\rip.avi",50)
FadeOut("R:\rip.avi",50)
didnt work,
but
clip=avisource("R:\rip.avi")
FadeIO(clip,50)
did
i have found many commands dont like the path of the file, but rathers a variable.
anyway, as long as it works right !! :D
DaveQB
27th May 2003, 13:42
this only faded out
clip=avisource("R:\rip.avi")
FadeIn(clip,50)
FadeOut(clip,50)
heck who knows whats up with my fadeIN
:rolleyes:
Wilbert
27th May 2003, 14:09
i have found many commands dont like the path of the file, but rathers a variable.
ahum ... Have a look at: http://www.avisynth.org/index.php?page=ScriptVariables.
There is something wrong with your syntax.
Try:
clip=avisource("R:\rip.avi")
clip2=FadeIn(clip,50)
FadeOut(clip2,50)
or:
avisource("R:\rip.avi")
FadeIn(50)
FadeOut(50)
DaveQB
27th May 2003, 14:22
cool
i need some more practice :D
although fadeIO is working fine now
same script that didnt work with 2.50
as long as it works, i am happy
(though, installing the version you need only takes a second and doent require restart)
Wilbert
27th May 2003, 14:30
although fadeIO is working fine now
same script that didnt work with 2.50
What script?
If you mean this script:
clip=avisource("R:\rip.avi")
FadeIn(clip,50)
FadeOut(clip,50)
It is because your third line (the fadeout) refers to the clip on the first line, while it should refer to the clip on the second line (the fadein). In other words, the fadein isn't passed through to the third line.
DaveQB
27th May 2003, 14:48
but like i said,
it is working now,
the script i am refering to is my FadeIO
clip=avisource("R:\rip.avi")
FadeIO(clip,50)
all good now....
thanx :D
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.