服务器端 COLLADA 转换器
我正在构建一个 Web 表单,以适应用户将 .obj 和 .fbx 3D 模型上传到网站的情况。我们需要一个服务器端解决方案来将这些文件转换为 Collada (dae)。
如果有人能为我指出正确的方向,那将会非常有帮助,因为我对可能的解决方案还没有可靠的想法。在我走上一条路之前,我想听听其他人的想法。
我只能想到上传过程中 PHP 触发的 python/perl 脚本的某些内容?
预先非常感谢,
I'm building a web form to accommodate users uploading .obj and .fbx 3D models to a site. We need a server-side solution to convert these files to Collada (dae).
It would be massively helpful if someone could point me in the right direction as I have no solid ideas yet on a possible solution. I'd like to hear what others think before I go off down one path.
I can only think something along the lines of a python/perl script triggered off by the PHP during upload?
Many thanks in advance,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会在服务器上使用由 PHP 触发的 Python 程序。我会寻找一个用于处理 Collada 文件的 Python 库(例如 http://collada.in4lines.com/)然后我会使用 FBX Python SDK 将 FBX 文件转换为 Collada。对于 OBJ 也许类似 http://pygame.org/wiki/OBJFileLoader 会有所帮助。
更新:我最近写了一篇关于使用 FBX 和 Python 作为网络服务器。
I would use a Python prograam on the server triggered by PHP. I would look around for a Python library for working with Collada files (e.g. http://collada.in4lines.com/) then I would use the FBX Python SDK to convert FBX files to Collada. For OBJ maybe something like http://pygame.org/wiki/OBJFileLoader would be helpful.
Update: I recently wrote a blog post about using FBX and Python as a web server.