Copyright © 2011-2019 MultiMedia Soft

TagsEditor.ID3V2_EventTimingsFrameEventCountGet method

Previous pageReturn to chapter overviewNext page

Remarks

 

Obtains the number of event timings inside the event timing frame (ETCO) of the ID3V2 tag and, at the same time, obtains also the original time stamp format used to indicate the event timing position when the frame was created.

 

For further details about methods related to tags editing refer to the TagsEditorMan class.

For details about the editing of tags see the How to edit tag info in sound files tutorial.

 

 

Syntax

 

[Visual Basic]

Public Function ID3V2_EventTimingsFrameEventCountGet (

ByRef nCount as Long,

ByRef nTimeStampFormat as enumId3v2TimeStampFormats

) as enumErrorCodes


 

[C#]

public enumErrorCodes ID3V2_EventTimingsFrameEventCountGet (

ref Int32 nCount,

ref enumId3v2TimeStampFormats nTimeStampFormat

);


 

[C++]

public: enumErrorCodes ID3V2_EventTimingsFrameEventCountGet (

Int32 __gc *nCount,

enumId3v2TimeStampFormats __gc *nTimeStampFormat

);


 

Parameter

Description

 

 

nCount

Reference that, on return from the method call, will contain the number of event timing frames

nTimeStampFormat

Reference that, on return from the method call, will contain the position of the time stamp format.

Supported values are the following:

Mnemonic Value

Value

Meaning

ID3V2_TIMESTAMP_FORMAT_FRAMES

1

MPEG frames

ID3V2_TIMESTAMP_FORMAT_MS

2

Milliseconds

 

 

Return value

 

Value

Meaning

 

 

Negative value

An error occurred (see the LastError property for further error details)

enumErrorCodes.ERR_NOERROR (0)

The method call was successful.