View Full Version : how to frameserve from AVS when encoder is CCE 2.50?
FredThompson
4th September 2003, 12:26
How is it possible to serve frames using an AVS script when the encoder is CCE?
I've tried going through VirtualDub both as direct stream copy and also fast recompress through HuffYUV set for YUY2 output. Both times generated a division by 0 error. This particular script has a virtualdub filter. Don't know if that makes a difference or not.
In any event, I'd far prefer to serve AVS's output rather than save a HuffYUV file because that takes so long to create.
I've read the description of Link2. Is there a freeware solution?
dvd2svcd
4th September 2003, 13:05
CCE 2.50 reads AVS files without any frameservers. Just load the AVS. Only thing to remember is to add ResampleAudio(44100) to the end of your AVS script.
FredThompson
4th September 2003, 13:08
Unfortunately, that's not an option. CNR2 filter crashes every time AVI2SVCD tries to open the script.
dvd2svcd
4th September 2003, 13:17
Well, you didn't say anything about that in post #1. Anyway, you can try ffvfw which is kind of like link2
FredThompson
4th September 2003, 13:30
yeah, sorry. I found the safe field was checked and the whole process would freeze on me every time. I thought it was due to AVS incompatibility and just did a "plain" encode to test.
Thanks, I'll take a look at ffvfw.
FredThompson
4th September 2003, 13:33
Uh...you mean ffvfw as in, the relative of ffdshow? Isn't that a codec, not a frame server?
dvd2svcd
4th September 2003, 15:03
http://cultact-server.novi.dk/kpo/avisynth/avs_cvs.html Install ffvfw and run makeAVIS.exe, it'll do the same thing as Link2.
FredThompson
5th September 2003, 23:59
Unfortunately, this isn't working. MakeAVIs crashes every time. It sees the source script and correctly determines the data related to that but when I click on the "create" button, no go. I've tried both of the settings at the bottom about storing the script and also tried an absolute path for the source AVI. Any ideas?
FredThompson
6th September 2003, 10:30
OK, this is even worse. Link2 crashes itself as soon as it's opened. There's a quick flash of the window then it's gone. Sigh...
Darksoul71
7th September 2003, 11:39
@FredThompson:
Which version of AVISynth are you using ?
If you use >= 2.5, you could try the following:
Add "ConvertToYUV2()" and set the color space of Link2 also to YUV2.
This could help.
-D$
NanoBot
7th September 2003, 16:19
Hi Fred,
Originally posted by FredThompson
How is it possible to serve frames using an AVS script when the encoder is CCE?
Using Avisynth.dll v2.5x as framserver for CCE 2.5 is not a problem at all, but you can't use "ResampleAudio(44100)" since the behavior of this function has changed in 2.5x
Try this one instead, it works fine for me:
LoadPlugin("...\MPEG2DEC3.DLL")
video=mpeg2source("Movie.d2v")
audio=BlankClip(1,audio_rate = 48000, sixteen_bit=true)
audiodub(video,audio)
...
ConvertToYUY2()
C.U. NanoBot
FredThompson
8th September 2003, 04:09
Link2 isn't crashing when it's asked for frames, it's crashing on startup. Really sucks.
As it turns out, serving frames really isn't needed right now as I've learned how to create a custom set of filters for the frameserver tab.
Thanks for the tip on MPEG source.
vBulletin® v3.8.11, Copyright ©2000-2026, vBulletin Solutions Inc.