``startVideo`` stuck forever and not throw error on Safari on Ipad Pro 14.5.1

Description

Which Web Video SDK version?
1.10.8
Video SDK Code Snippets

  async startGalleryVideo(cameraId, virtualBackground) {
    if (!cameraId) return;
    console.log(`[VIDEO-SDK JS] startGalleryVideo with camera id: ${cameraId} - virtualBackground: ${virtualBackground}`);
    try {
      let videoOptions = {
        cameraId: cameraId,
        hd: !window.isMobile
      };
      
      if (state.mediaStream.isSupportMultipleVideos() && virtualBackground) {
        videoOptions.virtualBackground = { imageUrl: virtualBackground };
      }
      await state.mediaStream.startVideo(videoOptions);
    } catch (error) {
      console.error(`[VIDEO-SDK JS] startGalleryVideo error: ${JSON.stringify(error)}`);
      throw error;
    }
  }

Stuck at:

      await state.mediaStream.startVideo(videoOptions);

Debug screen:

Device (please complete the following information):

  • Device: Ipad Pro (10.5 Inch)
  • OS: 14.5.1
  • Browser: Safari