Beispiel #1
0
    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)
Beispiel #2
0
 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)
Beispiel #3
0
 def __init__(self):
     IVideoInput.__init__(self)
Beispiel #4
0
 def __init__(self):
     IVideoInput.__init__(self)