offlineFramerate not passing framerate to composition

Steps causing the bug to occur

  1. make a image generator protocol composition
  2. publish a port named: offlineFramerate
  3. feed that value into composition (for testing we simply use a text to image)
  4. save and render movie in file->export->movie
  5. data not showing up in exported movie

How did the result differ from what you expected?

I expected the offlineFramerate to pass a real value to the published port

Have you found a workaround?

No

Other notes

  • Vuo version: 1.2.0
  • macOS version: OS X 10.9

framerate testing.vuo (2.52 KB)

The published port needs to have data type Real (your composition has a published port of type Text). I’ve attached a modified version of your composition that works for me.

framerate testing.vuo (3 KB)

(By the way, that port and the other protocol ports are explained in the Making compositions fit a mold with protocols section of the manual.)

100% My oversight!