LoadPlugin("C:\program files\dvd2svcd\MPEG2DEC\MPEG2DEC.DLL")
video=mpeg2source("c:\games\01.d2v")
audio=wavsource("c:\games\onimusha.wav")
audiodub(video,audio)
BicubicResize(480,360)
AddBorders(0,60,0,60)
That is my script and once I try to bring into CCE, it freezes. I can not get a AVIsynth script to work for anything (I even offered it money). When I convert DVDs it works fine, on it's own? No go. Any help would be appreciated.
TIA
+ Reply to Thread
Results 1 to 8 of 8
-
-
DVD2SVCD work in a different way. Video and audio will be encoded seperately. However, the script is OK. Sometimes it is usefull to add a ResampleAudio line to the sript, sometimes it is better to drag&drop the .avs into the cce window instead of "right click and add".
-
What I meant by working in DVD2SVCD is AVIsynth, not this script. I added the resample line also, froze. I drag into CCE all the time, froze. I don't get it. Guess I'll just stick to VFAPI.
-
1) Can you open/play your AVS file in media player?
2) Try removing the following line:
audiodub(video,audio)
3) or remove both lines:
audio=wavsource("c:\games\onimusha.wav")
audiodub(video,audio)
and encode the audio seperately.
BTW - in CCE undersettings are you using ES or PS? -
You probably have an Athlon processor. Add the following line to the end of your AVS file.
ResampleAudio(44100)
Let me know if that fixes it :o)
wh -
hmm, you may try the patch, that Kdiddy mentioned. If nothing helps, vidguy's method might always work. Convert the .d2v with VFAPI, load the fake avi into CCE, set everything as you would do with a .avs and save the project. Edit the .ecl with notepad, change the source file (*.avs instead of *vfapi.avi), change the target resolution if you use Avisynth to resize, change start and end frame if you use the trim command, etc and save the project. Then start cce, open the project and encode.
-
If you have an AMD Athlon CPU, do the following. Save an avisynth script with the following:
LoadPlugin("C:\program files\dvd2svcd\MPEG2DEC\MPEG2DEC.DLL")
video=mpeg2source("c:\games\01.d2v")
BicubicResize(480,360)
AddBorders(0,60,0,60)
ResampleAudio(44100)
Load that into CCE, and disable audio processing in CCE. Encode your audio file separately (beSweet 1.11 highly recommended), and use bbMPEG to multiplex / split your final mpeg(s).
If this doesnt work *AND* you are using an AMD based CPU, flame me like mad :o)
wh
Similar Threads
-
Avisynth manual IVTC trouble
By LoopinFool in forum RestorationReplies: 27Last Post: 16th Apr 2020, 13:42 -
Trouble Editing/Trouble Base Media?
By SlickPen in forum EditingReplies: 0Last Post: 20th Mar 2011, 19:53 -
Help finding an AviSynth deblocking filter that works at high resolutions
By Cman21 in forum EditingReplies: 17Last Post: 9th Nov 2010, 06:30 -
Device Capture - USB, Works With PAL / NTSC, Works with VirtualDub/VCR
By Drazick in forum Capturing and VCRReplies: 0Last Post: 7th Aug 2010, 18:27 -
Trouble with .mkv and VirtualDub using AVISynth
By Jonnycat in forum Video ConversionReplies: 3Last Post: 6th Apr 2010, 16:43