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?
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:
-------------------- UNITED STATES COAST GUARD Support Search AND Rescue GET LOST!!!
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
-------------------- 98' TECHNOVIOLET M3 PROJECT: STREETSLAYER'topsecretarea51status' UNDER MAJOR SURGERY! SHES IN BETTER HANDS NOW.... Sold: Gone, but...I'd buy them all back! 05' Interlagos Blue ZCP M3 Slick Top, 6spd Man'sTrans, M-Alcantara Manual Seats: the unicorn t
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.
-------------------- Alvin Caragay Mpire Automotive (https://www.facebook.com/MpireAutomotive/) '96 AC Schnitzer S3 Sport CLS Replica (https://www.facebook.com/ACSS3SportCLSR) '02 E39 540iAT
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: (sorry, I don't know how to find the delay). But maybe it is not needed :)