QMedia
Movie track commands
|
|
| QM_GetTrackModificationTime(movieRef; trackID; modDate; modTime):error | |||
|
|
movieRef | Longint | Movie reference |
|
|
trackID | Longint | Track ID |
|
|
modDate | Date | Track modification date |
|
|
modTime | Time | Track modification time |
|
|
error | Longint | Error result |
Returns the modification date and time of a track.
Parameter movieRef is the reference to the movie instance. The movie reference must have been previously obtained with a call to QM_NewMovieFromFile or QM_NewMovieFromURL.
Parameter trackID is the ID of the track.
Parameters modDate and modTime receive the track's modification date and time respectively.
Example
`Get the last modification time of track ID $trackID of movie $movieRef C_DATE($modDate)C_TIME($modTime) $error:=QM_GetTrackModificationTime ($movieRef;$trackID;$modDate;$modTime) |
Related commands
| QM_GetTrackCreationTime | Returns the creation date and time of a track. |