View Full Version : Is CCE 2.50 supporting Avisynth 2.5 ?
Lagoon
24th March 2004, 05:52
I've problems with CCE 2.50 and avisynth files, it simply won't load them, the CCE window close automatically when it finish analyzing the AVS script. It has no problem loading a simple AVI.
I'm sure it worked before I've had no idea whats gone wrong, also note it works with CCE 2.67 so I'm really confused :confused:
I'm using avisynth 2.5.5 beta, but it didnt work with 2.5.4 neither.
I'm using a P4 so that's no addaudio bug, and I tried the converttoyuy2 but also didnt work.
Thanks.
coona
24th March 2004, 11:58
I have CCE 2.5.0 and AviSynth 2.5.4 and this combination works fine. I donīt know where is the fault but Iīm sure it should work.
NanoBot
25th March 2004, 20:18
Hi Lagoon,
Originally posted by Lagoon
I've problems with CCE 2.50 and avisynth files, it simply won't load them, the CCE window close automatically when it finish analyzing the AVS script. It has no problem loading a simple AVI.
Thanks.
I think it is an audio problem, but possibly this sample script may help:
LoadPlugin("...\MPEG2DEC3.DLL")
video=mpeg2source("Movie.d2v")
audio=BlankClip(1,audio_rate = 48000, sixteen_bit=true)
audiodub(video,audio)
ConvertToYUY2()
This script simulates an audio stream, which afaik is needed by CCE 2.5 to work properly. For me, this script works fine with an Athlon 1800+ ( Palomino ) and with an Athlon 2500+ ( Barton )
C.U. NanoBot
Lagoon
26th March 2004, 01:03
Thanks I'll give it a try, though I thought the no-audio problem was athlon-related.
Edit : Hum, there is a little change, a script with fake audio will make CCE crash giving me some memory error and will close etc, loading without any audio closes it automatically, I'm really :confused: here.
coona
26th March 2004, 08:04
We have to start from the beggining - does AviSynth work at all? Are you able to watch your "video_clip.avs" in media player or some other software player?
Lagoon
26th March 2004, 16:36
Yes the script is fine, even on CCE2.66/2.67.
Also works on vdub tmpeg etc.
Caspar
30th March 2004, 07:35
I have the same problem.
CCE 2.5
Avisynth 2.5.4
AMD XP2600+
Windows 2000
CCE crashes on avs add with memory access violation. The same script works on CCE 2.67.
Here's the script:
loadplugin("mpeg2dec3dg.dll")
mpeg2source("MA.d2v")
ResampleAudio(44100)
coona
30th March 2004, 08:31
I have done quick test at work and AviSynth 2.54 and CCE 2.5 work fine together for me here. I tried your script, but without success. Maybe here could be the troubles - I use AddAudio function instead of ResampleAudio filter. Try it ;):
AddAudio.avs
function AddAudio(clip v1) {
v2 = Blankclip()
v1 = AudioDub(v1,v2)
return v1
}
My_Video_Clip.avs
import("C:\Program Files\DoItFast4U\new.avs\addaudio.avs")
LoadPlugin("C:\Program Files\DoItFast4U\new.avs\mpeg2dec3.dll")
Mpeg2Source("E:\DVD_VIDEO\VIDEO_TS\My_Video_Clip.d2v")
AddAudio()
ConvertToYUY2()
Caspar
30th March 2004, 12:19
@coona
Ok, your solution fixed the crashing problem. Thanks.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.