I started using CamStudio, which I like, its great for flash->avi conversions. But I'm have 2 problems, 1 minor, 1 annoying:

1) It list all my writing codecs except Huffyuv, which I find odd
2) Audio sample rates are always off slightly.

Not being able to use huffyuv isnt major, since I use PicVideo for the capture.

But the audio sync is annoying me. I have a simple post capture fix, but I'd prefer to do nothing. Now I'm using VirtualDubs file info to get the Video Time length and Audio time lengths, which should be the same, but arent. I convert the times to seconds, divide the audio length by the video length and multiply that by 44100:

Audio Legnth - 94.74 seconds
Video Length - 93.53 seconds

(94.74/93.53)*44100 = 44670 (this is the actual recorded sample rate)

Then in AVISYnth:

AVISource("capture.avi")
AssumeSampleRate(44670)

And its all synced up. But I hate taking the time to do this, it'd be nice if it sampled correctly, any suggestions / thoughts? I have alot of these to do, and this is taking too much time calculating the actual sample rate, and correcting for it.