Components All New MacOS Windows Linux iOS
Examples Mac & Win Server Client Guides Statistic FMM Blog Deprecated Old

AVRecorder.AuthorizationStatusForMediaType

Queries authorization status for audio/video recording.

Component Version macOS Windows Linux Server iOS SDK
AVRecorder 8.4 ✅ Yes ❌ No ❌ No ❌ No ✅ Yes
MBS( "AVRecorder.AuthorizationStatusForMediaType"; MediaType )   More

Parameters

Parameter Description Example
MediaType The media type, can be video or audio. "video"

Result

Returns status or error.

Description

Queries authorization status for audio/video recording.
Returns the client's authorization status for accessing the underlying hardware that supports a given media type.

The possible values are:

NotDeterminedIndicates that the user has not yet made a choice regarding whether the client can access the hardware.
RestrictedThe client is not authorized to access the hardware for the media type. The user cannot change the client's status, possibly due to active restrictions such as parental controls being in place.
DeniedThe user explicitly denied access to the hardware supporting a media type for the client.
AuthorizedThe client is authorized to access the hardware supporting a media type.

The application (FileMaker or runtime) may need to have Microphone and Camera usage strings in info.plist as well as entitlements used for code signing for those. FileMaker Pro 18.0.3 or newer does have those, but for a runtime or iOS SDK based app you may need to add that yourself.

Examples

Check status and request access:

If [ MBS("IsMacOS") ]
    Set Variable [ $status ; Value: MBS( "AVRecorder.AuthorizationStatusForMediaType"; "video" ) ]
    If [ $status = "NotDetermined" ]
        Set Variable [ $r ; Value: MBS( "AVRecorder.RequestAccessForMediaType"; "video" ) ]
        Exit Script [ Text Result: ]
    Else If [ $status = "Denied" ]
        Show Custom Dialog [ "Can't access camera" ; "Please go to system preferences, privacy and enable camera for FileMaker." ]
        Exit Script [ Text Result: ]
    Else If [ $status = "Authorized" ]
        # this is fine!
    End If
Else If [ MBS("IsWindows") ]
    # nothing needed
End If

See also

Release notes

Example Databases

Blog Entries

This function checks for a license.

Created 2nd September 2018, last changed 24th February 2022


AVRecorder.AudioDeviceInfo - AVRecorder.AvailableReactionTypes