Hi Guys.
I'm in the process of backing up the LOTR-TTT_SSE, i want go with the AVisynth -CCE 2.50 option.
I've created the following script.....
LoadPlugin("C:\Program Files\DVD2SVCD\Avisynth2 Plugins\Mpeg2dec\mpeg2dec.dll")
LoadPlugin("C:\Program Files\DVD2SVCD\Avisynth2 Plugins\Avisynth Subtitler.dll")
mpeg2source("G:\LOTR_TWO_TOWERS_SEE_D1\Lord1.d2v")
BicubicResize(720,576,0.0,0.6)
AvisynthSubtitler("H:\subs\","permsubs.txt")
ConvertToYUY2()
ResampleAudio(44100)
But when i load the script into CCE in just crash's everytime, so i don't know if it's the script or if it's CCE.
The thing is, it loads and plays perfect in WMP and i'm able to encode it with TMPGEnc without any problems, but i would prefare to encode using CCE because of the multipass VBR option.
I'm at a lost to understand why CCE is crashing, i can understand it crashing if i haven't got the resample audio in the script(which is needed for AMD CPU's) but i have and it still crash's.
So help would be most welcomed.
Thx in advance
+ Reply to Thread
Results 1 to 3 of 3
-
I Have Always Been Here
Toshiba Regza 37Z3030D, Toshiba HD XE1 + EP-10 ( Both Multiregioned), Samsung BD-P1500 Blu Ray. OPPO DV-983H -
With later versions of Avisynth the resample audio trick does not work anymore. Either downgrade to an earlier version of use the addaudio command instead.
Open a text file and type this:
function AddAudio(clip v1) {
v2 = Blankclip()
v1 = AudioDub(v1,v2)
return v1
}
Then save it as AddAudio.avs and place it in your Avisynth/plugins directory.
Now instead of the resample audio line in your AVS script replace it with this:
AddAudio()
Just so you know, if you place the mpeg2dec.dll and subtitler.dll in your avisynth/plugin directory than you no longer need the loadplugin commands. You can just use the commands themselves. -
Thx adam for the help and info.
I'll add that now and encode overnight
Thx again for the help.I Have Always Been Here
Toshiba Regza 37Z3030D, Toshiba HD XE1 + EP-10 ( Both Multiregioned), Samsung BD-P1500 Blu Ray. OPPO DV-983H
Similar Threads
-
AviSynth much needed help!
By dbanimal in forum EditingReplies: 18Last Post: 28th Jan 2011, 10:33 -
Problem with my mixer! I need some assist from a guru!
By hellfire45 in forum AudioReplies: 8Last Post: 17th Jan 2011, 02:54 -
AviSynth with VirtualDubMod - Inverse Telecine advice needed
By spicediver10191 in forum Video ConversionReplies: 5Last Post: 7th Dec 2010, 01:29 -
GURU feedback needed: web server encoding and .flv size
By lucite in forum Video ConversionReplies: 4Last Post: 15th Feb 2008, 18:28 -
simple request to video guru...or is it?
By wormdog88 in forum EditingReplies: 4Last Post: 12th May 2007, 00:57