-
Notifications
You must be signed in to change notification settings - Fork 21
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reloading script always increases memory consumption #195
Comments
it most likely isn't related to vspreview but rather a package you're using is holding a hard reference to the core and it's not getting destroyed, if you provide a sample script i can check |
import gc
from vapoursynth import core
clip = core.bs.VideoSource(r"")
print(len(gc.get_objects()))
clip.set_output() |
what plugins have you got? |
|
Or maybe you mean vspreview plugins? If yes, I have |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The tests I did so far:
gc.get_objects()
after each reloadingit's getting worse as script complexity increases and a large number of outputs are previewed.
The text was updated successfully, but these errors were encountered: