1

Can I rename the capture devices with C#?

Something like this:

Original Name

to

Ranamed

marc_s
  • 732,580
  • 175
  • 1,330
  • 1,459
grijalvaromero
  • 589
  • 1
  • 6
  • 20

1 Answers1

0

No, you can't implement this functionality with C#, because you can only enumerate the devices that will fetch the information about all in for each loop, but you cant rename it.

Read this msdn article on friendly name: https://msdn.microsoft.com/en-us/library/windows/desktop/dd316587(v=vs.85).aspx

miken32
  • 42,008
  • 16
  • 111
  • 154
DeshDeep Singh
  • 1,817
  • 2
  • 23
  • 43
  • 1
    Can you elaborate your answer? please – DanielV Jul 25 '15 at 08:28
  • 1
    you can only enumerate the devices that will fetch the information about all in for each loop, but you cant rename it. – DeshDeep Singh Jul 25 '15 at 08:34
  • 1
    @DeshDeepSingh That's not an elaboration. We're looking for a citation, a source of reference, an explanation about the lack of functionality, your personal experiences, or something like that. As it stands, your answer looks like a guess, or from having glanced at documentation. – bzlm Jul 25 '15 at 08:41