Jump to content

episode.createSequence() ?


mitch.s

Recommended Posts

This is very important when considering auto Episode/Sq/Sh generation!

 

episode.createSequence() function doesn't exist while episode.createShot() does.

This small inconsistency is probably quickly fixed.You cant create Sequences in Episodes out of the box (with the API)
 

Can't do this with the reparenting workaround either
 

project = ftrack.getProject(projectName)

ep = project.getEpisodes()[0] # a valid episode

epId = ep.getId()

sqParent = project.createSequence(sqName)
sqParent.set('parent_id',epId)

 

# Error:

# Traceback (most recent call last):

...

# ProtocolError: <ProtocolError for creative.ftrackapp.com//client/: 500 Internal Server Error> #

 

 

Kinda stuck here...

Link to comment
Share on other sites

  • 2 weeks later...

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...