Hello fellas,
I’ve created a webcam widget in flash 8 which records and dumps a flv to FMS - however, the quality of the preview window and the quality of the recorded flv is pretty bad - how can i improve this? need to get max quality if possible - here’s the setting:
_loc1.setLoopback(true);
_loc1.setMode(320, 240, 15, false);
_loc1.setQuality(32768);
_loc1.setKeyFrameInterval(15);
hiResVid.attachVideo(_loc1);
_loc2.client_cam = _loc1;
var _loc3 = new Microphone();
_loc3 = Microphone.get();
_loc3.setRate(44);
my_mic.setGain(80);
_loc2.client_mic = _loc3;
_root.rec_video.attachVideo(_loc2.my_cam);
any ideas?
Thanks for your help
Gurl-stuck