Simon Birrell

Results 5 comments of Simon Birrell

Has anybody found a fix or workaround for this?

I suspect this will never be fixed. We ended up sending audio files to the cloud to be converted.

Here's a quick variation: renderer = easy3d.OffScreen() model_pathname = easy3d.resource_directory() + "/data/bunny.ply" model = easy3d.PointCloudIO.load(model_pathname) renderer.add_model(model) print(f"Rendering to {image_pathname}") # renderer.render(image_pathname) viewer = easy3d.Viewer("Easy3D Viewer") viewer.add_model(model_pathname) viewer.run() Here the result...

Yes, if I just run model_pathname = easy3d.resource_directory() + "/data/bunny.ply" viewer = easy3d.Viewer("Easy3D Viewer") viewer.add_model(model_pathname) viewer.run() I still get a core dump. I'm not sure if this is relevant, but...

Here's an absolutely minimalist version, in REPL: python Python 3.13.2 (main, Feb 12 2025, 14:51:17) [Clang 19.1.6 ] on linux Type "help", "copyright", "credits" or "license" for more information. >>>...