ID3Com Comment and Other similar frames
Brought to you by:
t1mpy
I am using the ID3Com binary and attempting to write a
comment to an mp3 but having no success.
I am using the 3.8.3 source files.
Here is a VB code snippet
tag.link(sPath)
Set frame = tag.FindFrame(ID3_COMMENT, True)
frame.Field(ID3_FIELD_TEXT).Text(1) = "test"
tag.SaveV2Tag
Note: no comment is set when using the
tag.Comment = "test"
Logged In: YES
user_id=797155
Hi
Alec Doughty here
I'm having a very similar problem, but it's with any
FrameType - not just ID3_Comments
here's a snippet of my code:
Set oFrame = oTag.FindFrame(FrameType)
'FrameType is whichever Frame i'm looking for
'ie ID3_CONTENTTYPE or ID3_TRACKNUM
oFrame.Field(ID3_FIELD_TEXT).Text(1) = "TextToAdd"
oTag.SaveV2Tag
I'm very interested in this. I think that maybe .Text is a read-
only property??? At least an assignment to it doesn't actually
change it's value - i've traced it to try and find out whats
going on.
Please help!!!!!!!
Logged In: YES
user_id=474602
See my SimpleID3 project
(http://sourceforge.net/projects/simpleid3). It provides .NET
and COM interfaces for id3lib.