Log in

View Full Version : CCE v1.00.01.01 incompatible to AVS?


NoX1911
5th June 2008, 20:46
Hallo,
every avs script crashes CCE immediately after import. Does it work for anyone? Maybe avs support is blocked by design....

cce 1.00.01.01 trial
Avs 2.57 + 2.58RC1
WinXPSP3

45tripp
5th June 2008, 20:53
try killing audio within avisynth,
as an first offhand suggestion

Irakli
5th June 2008, 21:24
Hallo,
every avs script crashes CCE immediately after import. Does it work for anyone? Maybe avs support is blocked by design....

cce 1.00.01.01 trial
Avs 2.57 + 2.58RC1
WinXPSP3

Try this (http://forum.doom9.org/showthread.php?p=315640#post315640) solution. I am not 100% sure if it is relevant here though.

Wilbert
5th June 2008, 21:30
Does the following script

Version()

crash in CCE?

NoX1911
6th June 2008, 01:55
Killaudio doesn't work but 'Version' is ok. Script is DirectShowSource("video.flv",fps=25). I'm using Haali splitter (29/03/2008) and ffdshow (ffdshow_rev1971_20080523_clsid_sse_icl10.exe) for Flash videos.

Edit: Hmm, wait... Haali doesn't support flv i think. My players are KMP and MPC-HC that have built-in flv splitters so it may be possible i'm missing a splitter here.

Edit2: I installed a flv splitter (guliverkli2 FLVSplitter_20080127) and videos play in WMP but still not in cce (no change, crash after 1 sec).

Edit3: This is my current script...
DirectShowSource("video.flv",fps=25)
LanczosResize(704,432)
addborders(0,72,0,72)
converttoyv12
killaudio

Wilbert
6th June 2008, 09:37
You need to feed it with RGB or YUY2. Try

DirectShowSource("video.flv",fps=25,convertfps=true)
LanczosResize(704,432)
addborders(0,72,0,72)
converttoyuy2
#killaudio

NoX1911
6th June 2008, 13:43
Indeed. YUY2 is working. Weird that cce doesn't accept YV12. Was it always so or is it just me blinded by MeGUI and AVS docs that recommend YV12 colorspace?