Streaming live Works only for 30 seconds and turn off in ionic ? help me

i have implemented streaming media plugin in my app ionic , playing work fine but only for 30 first second and turn off , where is the problem ?

I remember i had a similar problem too, for this reason I started using the html video tag like this:

    <video onclick="this.play();" width="100%" height="auto" poster="posterUrl"
      id="videoID" preload="auto" controls autoplay>
      <source [src]="this.streamingService.liveStreamingDataSanitizedM3u" type="video/mp4" />
    </video>