Start Page » DEMoCap: Drag[en]gine Motion Capture » XML: *.stagedirs.xml
Stage Directions allow motion capture operators to set up stage directions for motion capture actors before the motion capture session begins. *.stagedirs.xml
files allows to export/import stage directions to/from files. This makes it easier to work with stage directions. You can create stage direction XML files upfront without needing to start DEMoCap to edit them. Once you have them all set up you can simply import them into the appropriate scenes.
The XML has this structure:
stageDirections
, occurance oncestageDirection
, occurance zero or more times: Defines one stage directionname
, string content, occurance once. Defines the name of the stage directioncontent
, mixed content, occurance zero or once. Defines the text content of the stage direction to show. The content of this tag is string text with <br/>
tags to create a new line.image
, string content, occurance zero or once. Defines path to image file to show. At the time being not used by DEMoCap.video
, string content, occurance zero or once. Defines path to video file to show. At the time being not used by DEMoCap.An example file can look like this:
<?xml version='1.0' encoding='UTF-8'?> <stageDirections> <stageDirection> <name>Motion 1</name> <content> Description of what the actor has to perform. </content> </stageDirection> <stageDirection> <name>Motion 2</name> <content> Description of what the actor has to perform.<br/> After new line some more information.<br/> <br/> After an empty line some more information. </content> </stageDirection> </stageDirections>