Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Jitsi Meet Wrapper is unable to display the start recording feature." #117

Open
bashorihasan opened this issue Jul 21, 2023 · 0 comments
Open

Comments

@bashorihasan
Copy link

bashorihasan commented Jul 21, 2023

When making a call, there is no feature to record, but for the web version, it's already displayed.
I use the jitsi_meet_wrapper: ^0.2.0+1
and this is my code :

try {
      await JitsiMeetWrapper.joinMeeting(
        options: JitsiMeetingOptions(
          roomNameOrUrl: vcall.meetUrl!,
          userDisplayName: vcall.receiverName,
          userEmail: "[email protected]",
          // configOverrides: {
          //   "prejoinPageEnabled": false,
          //   "prejoinpage.enabled": false,
          // },
          featureFlags: <String, Object?>{
            "isRecordingEnabled": true,
            "isAddPeopleEnabled": false,
            "isAudioFocusDisabled": false,
            "isAudioMuteButtonEnabled": true,
            "isAudioOnlyButtonEnabled": false,
            "isCalendarEnabled": false,
            "isCallIntegrationEnabled": false,
            "isCloseCaptionsEnabled": false,
            "isConferenceTimerEnabled": false,
            "isChatEnabled": false,
            "isFilmstripEnabled": false,
            "isFullscreenEnabled": false,
            "isHelpButtonEnabled": false,
            "isInviteEnabled": false,
            "isIosRecordingEnabled": false,
            "isIosScreensharingEnabled": false,
            "isAndroidScreensharingEnabled": false,
            "isKickoutEnabled": false,
            "isLiveStreamingEnabled": false,
            "isLobbyModeEnabled": false,
            "isMeetingNameEnabled": false,
            "isMeetingPasswordEnabled": false,
            "isNotificationsEnabled": false,
            "isOverflowMenuEnabled": false,
            "isPipEnabled": false,
            "isRaiseHandEnabled": false,
            "isReactionsEnabled": false,
            "isReplaceParticipantEnabled": false,
            "isServerUrlChangeEnabled": false,
            "isTileViewEnabled": false,
            "isToolboxAlwaysVisible": false,
            "isToolboxEnabled": true,
            "isVideoMuteButtonEnabled": true,
            "isVideoShareButtonEnabled": false,
            "isWelcomePageEnabled": false,
            "prejoinPageEnabled": false,
          },
          subject: vcall.senderName,
        ),
        listener: JitsiMeetingListener(
          onConferenceWillJoin: (url) {},
          onConferenceJoined: (url) {},
          onConferenceTerminated: (url, error) {
            onEnded();
          },
          onAudioMutedChanged: (isMuted) {},
          onChatMessageReceived: (senderId, message, isPrivate) {},
          onChatToggled: (isOpen) {},
          onClosed: () {
            onEnded();
          },
          onOpened: () {},
          onParticipantJoined: (email, name, role, participantId) {},
          onParticipantLeft: (participantId) {
            onEnded();
          },
          onParticipantsInfoRetrieved: (participantsInfo, requestId) {},
          onScreenShareToggled: (participantId, isSharing) {},
          onVideoMutedChanged: (isMuted) {},
        ),
      );
    } catch (error) {
      if (kDebugMode) {
        debugPrint("error: $error");
      }
    }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant