I am trying to play mp4 video in my application using HTML5 video tag. I tried different source paths but nobody works. The flash alternative also does not work.
<video>
<source src="videos/video.mp4" type="video/mp4"></source>
</video>
I tried this plugin , but the created path ( android.resource://com.example.myapp/videoId) throws an error in the console:net::ERR_UNKNOWN_URL_SCHEME
My tests run on Android 4.4.3.
How to play the video?
source
share