Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Code Block
languagejs
titleVideoStream Protocol Handler
linenumberstrue
video = ACCESS({source='Video', 
                wrapper='GenericPull', 
                transport='IntegratedCamera', 
                protocol='none', 
                datahandler='Tuple',
                options=[['id', '0']],
                schema=[['image', 'IMAGEJCV']]
               })

output = SENDER({sink='Sink',
				wrapper='GenericPush',
				transport='none',
				protocol='VideoStream',
				dataHandler='Tuple',
				options=[	['framerate', '30.0'],
							['streamUrl', 'udp://192.168.178.105:8085']
						]
				}, video)

...