aja.embedded.rest.kipro.TimecodeListener = class TimecodeListener(threading.Thread)
    This listener creates a connection to a ki-pro unit and listens for timecode event updates.
WARNING: Timecode events may not occur every frame. If you need a frame accurate timecode, consider using
RS422 or setting timecode as a record trigger.
 
quickstart:
 
python$
  >>> from aja.embedded.rest.kipro import *
  >>> l = TimecodeListener('http://YourKiPro')
  >>> l.start()
  >>> print l.getTimecode()
 
 
Method resolution order:
TimecodeListener
threading.Thread
threading._Verbose
__builtin__.object

Methods defined here:
__init__(self, url)
Create a TimecodeListener.
Use start() to start it listening.
getTimecode(self)
Thread safe.
run(self)
stop(self)
Tell the listener to stop listening and the thread to exit.

Data and other attributes defined here:
__author__ = 'Support <support@aja.com>'
__copyright__ = 'Copyright (C) 2009 AJA Video Systems, Inc.'
__date__ = '$Date: 2012-11-06 13:34:08 -0800 (Tue, 06 Nov 2012) $'
__license__ = 'Proprietary'
__version__ = '$Revision: 44 $'

Methods inherited from threading.Thread:
__repr__(self)
getName(self)
isAlive(self)
isDaemon(self)
is_alive = isAlive(self)
join(self, timeout=None)
setDaemon(self, daemonic)
setName(self, name)
start(self)

Data descriptors inherited from threading.Thread:
daemon
ident
name

Data descriptors inherited from threading._Verbose:
__dict__
dictionary for instance variables (if defined)
__weakref__
list of weak references to the object (if defined)