Hi,
I am using Java Playframework V2.1.3 . I thought we can use the videos directly placing them in the public folder and then providing the url in the html file.
Below is the piece of code which I am using. In desktop it doesnt stream but pauses till the file content is downloaded and then it plays the video. In iPad it doesn't play the video instead it just shows like a poster with unable to play logo

Code in the html page:
<video controls="controls"
style="width:800px">
<source
src="/myApp/assets/videos/My_Movie.mp4" type="video/mp4">
Your
browser does not support the video tag.
</video>
Please help me in this thanks!!!