Copy a clip(s) from one library to another via python

Is it possible to copy a selected clip from one library to another via python? I wish to take a snapshot of a master(s) and copy them into a dated folder (and export a mov).

You can use
flame.media_panel.copy( your_py_clip, the_destination_py_library)
or
flame.media_panel.copy( [your_py_clip1, your_clip2], the_destination_py_library)

https://help.autodesk.com/view/FLAME/2025/ENU/?guid=Flame_API_Python_API_autodesk_flame_python_api_html#PyMediaPanel

1 Like

Thank you so much! works like a dream