How do we ensure that the filename externalized property is filled in before the CSVWriter and FFMPEGWriter nodes are run? #2034
-
Hi! I'm having some issues with my bonsai workflow. Here is the set up:
How do we ensure that the filename externalized property is filled in before the CSVWriter and FFMPEGWriter nodes are run? Graphically: the highlighted nodes below need to run before all of the other nodes Thanks! Kai |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 5 replies
-
Avoid the branching pattern when initializing property values as stated in the docs. https://bonsai-rx.org/docs/articles/workflow-guidelines.html#property-initialization Instead initialize the value to a subject and subscribe to it twice. See an example here #1367 (comment) |
Beta Was this translation helpful? Give feedback.
Avoid the branching pattern when initializing property values as stated in the docs. https://bonsai-rx.org/docs/articles/workflow-guidelines.html#property-initialization
Instead initialize the value to a subject and subscribe to it twice.
See an example here #1367 (comment)