how videos fetch and play in ionic my app.how can i do that please anyone guide me
If you want to play video in your application try streaming-media for IOS and Android both,
It will play video on your default video player of the device.
thanks
Actually i want to play the video inside the app. is it possible using streaming-media?
No,
In video tag, all the controls will not work properly on all the devices. Moreover, iframe will work only with Android. So it would be better to go with the media stream.
<video width="400" controls>
<source src="mov_bbb.mp4" type="video/mp4">
</video>
<iframe src="mov_bbb.mp4">
<p>Your browser does not support iframes.</p>
</iframe>
thanks,