The video does not play while the image tracking is black

Hi,
I am using UniversalAR image tracking on an Android OS 11 device.
The 3D framework is A-Frame.
I am trying to play the video at the same time the image tracking works, The video plane turns black.

A-Frame 1.2.0
Zappar-threejs 2.0.5
Zappar-aframe 2.0

<a-assets>
  <a-asset-item id="target-file" src="https:/example.com/sample.zpt"></a-asset-item>
        <video 
          id="video-001
          autoplay="false"
          webkit-playsinline
          playsinline crossorigin="anonymous"
          src="https:/example.com/sample.mp4"
          muted>
        </video>
</a-assets>
<a-camera id="camera" zappar-camera></a-camera>
<a-entity id="zappar-marker" zappar-image="target: #target-file">
  <a-entity id="model" visible="false">
          <a-video 
            src="#video-001"
            scale="1 0.604994324631101"
            position="0 0 0">
          </a-video>
  </a-entity>
</a-entity>