Skip to content

Instantly share code, notes, and snippets.

@jimbuck
Created May 11, 2017 12:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimbuck/f66197820fa943e4bed456d644f48406 to your computer and use it in GitHub Desktop.
Save jimbuck/f66197820fa943e4bed456d644f48406 to your computer and use it in GitHub Desktop.
Get List of Media Devices (not streams)
navigator.mediaDevices.enumerateDevices()
.then(devices => devices.map(d => `[${d.kind}] ${d.label}`))
.then(console.log.bind(console))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment