PDA

View Full Version : Video Recording Size


CompSci
07-22-2013, 09:15 AM
Hello,

I have implemented a def recording feature to my environment and the window maximum recording size is 640x480. Is there a way to make this size bigger? I want to capture the entire environment.

Thank you :)

Jeff
07-22-2013, 05:04 PM
You can change the width/height options:
viz.setOption('viz.AVIRecorder.maxWidth','800')
viz.setOption('viz.AVIRecorder.maxHeight','600')

CompSci
07-23-2013, 05:29 AM
You can change the width/height options:
viz.setOption('viz.AVIRecorder.maxWidth','800')
viz.setOption('viz.AVIRecorder.maxHeight','600')

Thanks I will give this a try !