Image | Audio | Video |
---|---|---|
X |
Returns the throughput of a video in frames per second.
Include file
dmbvideo.h
Syntax
>>-FrameRate--(--handle--)-------------------------------------><
Parameters (data type)
Return values (data type)
Frame rate of video (SMALLINT). Returns a null value if the throughput rate is variable.
Examples
Get the frame rate of the video that is stored in the video column of the employee table for Anita Jones:
EXEC SQL BEGIN DECLARE SECTION; short hvFm_rate; EXEC SQL END DECLARE SECTION; EXEC SQL SELECT FRAMERATE (VIDEO) FROM EMPLOYEE INTO :hvFm_rate WHERE NAME='Anita Jones';