PDA

View Full Version : can't frameserve mpg to vd mod


rashif
4th November 2003, 09:30
hello i'm new here, and i just want to say i've learned a lot
in these 5 days, the funny thing is i've told the thing to my wife
and she laughted at me because of the 5 days no posting period... \:

ok to my problem...
i'm trying to put in srt subs in mpg 1 ntsc file.
after everything i tried failed i said lets tried avisynth.
i'm working with windows 98 and avisynth 2.08
my problem is i tried a lot of scripts
with nics mpgencoder dll and also i tried directshow..
but nothing seems to work
i get a "i do'nt know what is load plugin in line one" by virtualdub
mod...
or "i don't what is mpgsource in line one"...

will someone please help?

Wilbert
4th November 2003, 10:33
First check if AviSynth is installed correctly. Make a script containing the single line:

Version

and open it in vdub. What do you see? If you don't get the version number, reinstall AviSynth. Make sure that you also install huffyuv. Finally, have a look at the following page:

http://www.avisynth.org/index.php?page=Troubleshooting

rashif
4th November 2003, 11:17
i will do this after work.
(more 5 hours) and then post a reply.

rashif
4th November 2003, 19:15
when checking version script
i get version 0.3 copyright 2000 ben roudiek-gould
i've installed huffyuv 2.1.1
my script is:
LoadPlugin("C:\Program Files\AviSynth2\plugins\MPEGDecoder.dll")
MPEGSource("C:\My Documents\Reshef\My Movies\Jake 2.0 - S1E1 - The Tech.TvRip.FTV.Heb.Sub.Rashif.mpg")

i get the message:

i don't know what "loadplugin" means on line 1

Wilbert
4th November 2003, 20:58
i get version 0.3 copyright 2000 ben roudiek-gould
Wow, people are still using that?

Could you install v2.08 from
http://sourceforge.net/projects/avisynth2

At least, if the site is accessible again.

rashif
5th November 2003, 07:20
i've found a link in doom9 site

http://www.doom9.org/Soft21/SupportUtils/AviSynth_208.exe

i will install and try again after work (10 hours from now)
and then post a reply.

rashif
5th November 2003, 18:00
now i can load the mpeg file in vd mod and also after a lot of trouble
loaded an ssa subtitles..
but when i'm frameserving it to tmpgenc only the video field is
filled and not the audio field...
i know i must change the script...
something about mpa plug in..
what is the best way to do this without audio sync problems?

thank you.

Wilbert
5th November 2003, 18:19
You have to demux the audio (with TMPGEnc for example), and import it with MPASource (see faq: Q3.5). The script becomes something like:

LoadPlugin(...)
video = MPEGSource(...)
audio = MPASource("c:\audio.mpa").DelayAudio(...) # or whatever the correct name is
AudioDub(video,audio)

DelayAudio is the delay of your audio file in seconds: http://www.avisynth.org/index.php?page=DelayAudio (sorry, I don't know how to find the delay). But maybe it is not needed :)

rashif
6th November 2003, 18:02
when i decode the movie it reaches to the middle and the video stops
audio continues...
???:confused:
about the mpa.. i demuxed with tmpgenc and gave the file as the audio
source and had the well known pain in the ass "audio sync problem" :angry:
if i load the mpa file via the avisynth it will be ok?