Video is not play in iOS

In this code I give any specific URI then the video is playing but not with dynamic URI.

<Video
            ref={video}
            style={{
              width: "100%",
              height: "100%",
            }}
            source={{
              uri: `${serverUrl}/api/image?id=${item}`,
            }}
            useNativeControls
            resizeMode='contain'
            isLooping
            onPlaybackStatusUpdate={(status) => setStatus(() => status)}
          />

is this my video URI problem?
my vide URI look like: “http://ec2-3-13-247-85.us-east-2.compute.amazonaws.com/api/image?id=c8d872b1-510f-43d3-a0ea-8005e85afc3f.mp4

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.