vedo
vedo copied to clipboard
quality and resolution of the video
in the example of saving video, there is the settings.screenshot_scale to control the resolution or quality of the video. However, in recent version of vedo, there is no screenshot_scale property. how can we control the quality now? Also, is there any plan to update the example documentation?
# settings.screeshot_scale = 2 # to get higher resolution
You should be able to do it with
plotter.screenshot("filneame.png", scale=2)
Also, is there any plan to update the example documentation?
Documentation should be already up to date in https://vedo.embl.es/autodocs/content/vedo/vedo.html Do you see anything that is out of date?
thanks for your reply.
I have tried plotter.screenshot(). It can indeed increase the quality of the screenshot picture, but how can we apply this to the video?
Also, is there any plan to update the example documentation?
sorry for the misleading, I mean the out-dated code in the example
# settings.screeshot_scale = 2 # to get higher resolution
Thanks for pointing to the problem I just pushed a fix for it:
video = Video(..., scale=2)