vid:recorder-status
vid:recorder-status
Reports the current status of the recorder. Initially and after the recorder is saved (via vid:save-recording
) or reset (via vid:reset-recorder
) the recorder status is “inactive”. After calling vid:start-recorder
the status will be “recording”.
Example:
vid:recorder-status ; => "inactive"
vid:start-recorder
vid:recorder-status ; => "recording"
vid:reset-recorder
vid:recorder-status ; => "inactive"
Take me to the full Vid Extension Dictionary