home *** CD-ROM | disk | FTP | other *** search
- /* Read the timecode example */
- /* MediaPoint needs to be set to timecode for this script!*/
-
- ADDRESS 'MEDIAPOINT'
- options results
-
- CURSOR OFF
-
- DO I=1 TO 500
- TCGET
- hours = TRUNC(result/1000000)
- minutes = TRUNC(result/10000)
- seconds = TRUNC(result/100)
- frames = result
- say hours':'minutes-100*hours':'seconds-100*minutes':'result-100*seconds
- END
-