Image | Audio | Video |
---|---|---|
X |
Returns the clock speed of a recorded MIDI audio, in ticks per second.
Include file
dmbaudio.h
Syntax
>>-TicksPerSec--(--handle--)-----------------------------------><
Parameters (data type)
Return values (data type)
Number of clock ticks per second of MIDI audio (SMALLINT). Returns a null value for audio in other formats.
Examples
Get the file names of all MIDI audios in the sound column of the employee table that were recorded at speeds less than 50 clock ticks per second:
EXEC SQL BEGIN DECLARE SECTION; char hvAud_fname[251]; EXEC SQL END DECLARE SECTION; EXEC SQL SELECT FILENAME(SOUND) INTO :hvAud_fname FROM EMPLOYEE WHERE FORMAT(SOUND)='MIDI' AND TICKSPERSEC(SOUND)<50;