List Webcam Devices in Python with PyGame

How to write a Python Program to List Webcam Devices in Python with PyGame ?


Solution:

#!/usr/bin/env python

import pygame.camera
pygame.camera.init()

camlist = pygame.camera.list_cameras()
print camlist



Learn More :