Hi Gerald,
Being able to record audio/video is on the list of things we want to do in the future, but we haven't had the time to devote to it yet.
Mauz Khan's recordrtc is very clever stuff but it's viable in the common use cases. Try running his code and notice how big the files are for a given period of time. The trick is his audio is WAV format (basically raw uncompressed sound samples) and his video doesn't have interframe compression (which is where you get most of the compression in video because there are typically only small changes between frames). There are audio compression libraries written in Javascript, but I have no idea how powerful a machine you'd need to make them run in real-time while also spending cycles on video compress/decompression. If you have the time to do the experiment, I'm sure a lot of people would love to hear the results.
There is a MediaStreamRecorder API but to the best of my knowledge, no browsers implement it yet. The node-webrtc project should make it easier to write your own conferencing server (including recording) and it sounds like it's nearly ready for that purpose.