Ionic 3 Video pauses after 1 second of playing on IOS 13.3, video works in older versions of IOS.
<ion-content padding>
<video width="100%" height="100%" controls autoplay>
<source src="{{videoURL}}" type="video/mp4">
</video>
</ion-content>
but works perfectly while we play the video muted
<ion-content padding>
<video width="100%" height="100%" controls autoplay muted>
<source src="{{videoURL}}" type="video/mp4">
</video>
</ion-content>