def __init__(self): IVideoInput.__init__(self) # # Detect available devices # i = 1 path = "/dev/fw" devpath = path + str(i) while os.path.exists(devpath): self.device_list.append(devpath) i = i + 1 devpath = path + str(i)
def __init__(self): IVideoInput.__init__(self) # # Detect available devices # i = 1 path = "/dev/fw" devpath = path + str(i) while os.path.exists(devpath): self.device_list.append(devpath) i=i+1 devpath=path + str(i)
def __init__(self): IVideoInput.__init__(self)