Conflicts between FuseX.Gstreamer and Image tags!

I have experienced a conflict between RTSP and Image tags.

If you remove FuseX.Gstreamer and FuseX.Controls, no conflicts will occur.

The operation process receives the Base64 string as FCM, encodes it as jpg, stores it in External Storage, and outputs it through “”. Later, when the image is clicked, the video is viewed through the RTSP protocol.

The related code and error message are as follows.

[Images Page]








			<Grid DefaultRow="60" ColumnCount="5" CellSpacing="10" Padding="10">
				<Each Items="{data}">
					<Image File="{path}" Size="60" Clicked="{onClickImage}" />
				</Each>
			</Grid>
		</Each>
	</StackPanel>
</ScrollView>

[RTSP (Gstreamer) Page]

  <Activated>
     <Callback Handler="{rtspOn}"/>
  </Activated>
  <Deactivated>
     <Callback Handler="{rtspOff}"/>
  </Deactivated>
  <Router ux:Dependency="router" />
  <Resolution ux:Global="Resolution" />
  <JavaScript File="./RtspPage.js" />

  <OnBackButton Handler="{physicalBackButton}"/>

  <WhileTrue Value="{isOn}">         
     <!-- <x:RtspVideo ux:Name="video" Url="rtsp://192.168.0.89:554/hsub"> -->
     <!-- rtsp://mpv.cdn3.bigCDN.com:554/bigCDN/mp4:bigbuckbunnyiphone_400.mp4 
 			rtsp://184.72.239.149/vod/mp4:BigBuckBunny_175k.mov -->
     <!-- <x:RtspVideo ux:Name="video" Alignment="Center" Height="70%" Url="rtsp://192.168.1.50:554/hsub"> -->
     
     <x:RtspVideo ux:Name="video" Height="{rtspResolution}" Alignment="Center" Url="rtsp://192.168.0.5:554/hsub">
        <Panel Alignment="TopCenter" HitTestMode="LocalBounds" Margin="0,0,20,0" Padding="10,5" Clicked="{goBack}">
           <Panel>
              <Text Value="Back" Alignment="Center" Color="#bbbbbb" FontSize="20" />
           </Panel>
           <Rectangle Layer="Background" CornerRadius="10">
              <Stroke Width="2" Color="#bbbbbb" />
           </Rectangle>
           <WhilePressed>
              <Scale Factor=".95" Duration=".08" Easing="QuadraticOut" EasingBack="QuadraticIn" />
           </WhilePressed>
        </Panel>
        <Text Value="{Property video.Status}" TextAlignment="Center" Alignment="Center" Color="#888" />
     </x:RtspVideo>
     

     <Rotate Degrees="90" Duration=".5" />
  </WhileTrue>

[Error Code]
07

I really need your help. thank you.
@Morten