nikos Level: Trainee
 Registered: 15-09-2006 Posts: 1
|
How to list all video codecs
Hello all,
I would like to create a list of all the codecs that are installed on my system. I want to create a function that sets the "active" codec for the next capture AUTOMATICALLY without any input by the user. For example:
-------------------------------------------
dim codeclist() as string
private Sub PopulateList()
codeclist() is populated by the installed codecs.How?
end Sub
private sub SetActiveCodec(byval index as integer)
setting the active codec as codeclist(index). How?
end sub
Private Sub Form_Load()
PopulateList
SetActiveCodec(0)
End Sub
------------------------------------
Thank you very much
|