Log in

View Full Version : Avisynth with avisubdetector? How?


ericf
26th February 2006, 13:40
I have tried using avisynth scripts with avusubdetector but the video is always upside down.
And this is the same for avi and mpeg files. I tried the flip command but id doesn't work.
Can anyone help me?

Thanks.

ericf

communist
26th February 2006, 20:10
Post your script.

ericf
5th March 2006, 20:00
AVISource("path\to\your.avi",audio=false)
TDeint(mode=1)
BlendBob()
ConvertTORGB24()

And it seems to work sometimes. But what about mpg files?
If I use DirectshowSource instead of AVISource I can't find anything in Avisubdetector.

DirectShowSource("c:\Terracotta\MSF_08.mpg",audio=false)
TDeint(mode=1)
BlendBob()
ConvertTORGB24()

= nothing.

Not even this works:
DirectShowSource("c:\Terracotta\MSF_08.mpg")

So what am I doing wrong here?

Is there supposed to be some color conversion for AviDubDetector to open an mpg file? I can only find the new thread at doom9 even through I know there was an old one.
Could it be that W98 didn't work and XP does? Nah. That couldn't be it.
ericf

EDIT:
This one seems to make it work:

MPEGSource("c:\Terracotta\MSF_08.mpg")


Thanks.