Video_set_rate - hpgDesigns/hpgdesigns-dev.io GitHub Wiki
Description
Sets the playback rate for the given video. This can be used to fast-forward video playback.
Parameters
| Parameter | Data Type | Description | 
|---|---|---|
| id | integer | index of the video to seek | 
| rate | double | playback rate, default is 1, must not be 0 | 
Return Values
void: This function does not return anything.
Example Call
// demonstrates setting a video to playback two times as fast
video_set_rate(myvideo, 2);
NOTOC