Here is my code:
This code works perfectly when changing attributes such as:
Title
Author
My question is this:
Is it possible to create new attributes that can then be saved to the file as standard attributes that can then be seen when viewing the attributes of a file?
Code:
Public Sub SaveMediaItemAttributesToFile(stringFilename As String, stringAttributeName As String, stringAttributeValue As String)
Dim MediaObject As WMPLib.IWMPMedia3
MediaObject = MediaPlayerObject.newMedia(stringFilename)
With MediaObject
.setItemInfo(stringAttributeName, stringAttributeValue)
End With
MediaPlayerObject.enabled = True
End Sub
Title
Author
My question is this:
Is it possible to create new attributes that can then be saved to the file as standard attributes that can then be seen when viewing the attributes of a file?