--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/2c21c9fc-eb98-4482-91ba-c56e263bca09%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
you can just use mayapy, then invoke the AbcExport plugin from there.
On Fri, May 5, 2017 at 4:38 PM likage <dissid...@gmail.com> wrote:
--Hi all, I am trying to convert objects (.obj) into alembics (.abc)While I am able to perform this by importing my objs into a maya scene and export it as alembic, is there a way in which I can run it externally out of Maya session?Such that I can try running it as a command line or somewhat, by making use of the AbcExport plugin within Maya?
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/2c21c9fc-eb98-4482-91ba-c56e263bca09%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAAssL7a_Aa7TRgPHPQ2CY3%3D6Nf_Hhdhu_XOWZRJq6O%3D5J%3DA3mw%40mail.gmail.com.To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_maya+unsub...@googlegroups.com.
Alembic also has a Python interface.Pretty sure you can do it without requiring any Maya licenseOn Sat, May 6, 2017 at 3:52 AM, Paul Molodowitch <elro...@gmail.com> wrote:
you can just use mayapy, then invoke the AbcExport plugin from there.
On Fri, May 5, 2017 at 4:38 PM likage <dissid...@gmail.com> wrote:
--Hi all, I am trying to convert objects (.obj) into alembics (.abc)While I am able to perform this by importing my objs into a maya scene and export it as alembic, is there a way in which I can run it externally out of Maya session?Such that I can try running it as a command line or somewhat, by making use of the AbcExport plugin within Maya?
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/2c21c9fc-eb98-4482-91ba-c56e263bca09%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAAssL7a_Aa7TRgPHPQ2CY3%3D6Nf_Hhdhu_XOWZRJq6O%3D5J%3DA3mw%40mail.gmail.com.
--
You received this message because you are subscribed to the Google Groups "Python Programming for Autodesk Maya" group.
To unsubscribe from this group and stop receiving emails from it, send an email to python_inside_m...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/python_inside_maya/CAFS5DCZTKa%3DCfmorZksPgJaQASH9DSZGR3LmLBm_4f1gj2c4Nw%40mail.gmail.com.
ERROR, imageIsFile, can't read `/user_data/custom_scripts/'. Is a directory
File read in 0.024 seconds.Error: Failed to open IFF file for reading : /user_data/.tmp//maya108600x7fff97d2ea00.iffimport osimport maya.standalonefrom sys import argvmaya.standalone.initialize() import maya.cmds as cmds def main(): obj_file_path = argv[1] print obj_file_path
# Check for path validity check_open_path = os.path.isfile(obj_file_path) if not check_open_path: raise IOError('Input file path does not exists. Please check or make sure that full path is used.') return
cmds.loadPlugin('objExport.so') cmds.file(obj_file_path, i=True, type='OBJ')
if __name__ == "__main__": main()