I am using html5 flowplayer in my website to play videos, but I got below error:
- Playing file with size 4MB, it works
- Playing file with size over 4MB, it shows 'waiting...' for some seconds and shows error: HTML 5: video file not found.
System information: - My website is using Yii Framework - Server linux, Ram: 1GB
Here is code rendering player
$("#player").flowplayer({
playlist: [
[
{ mp4: $("#fileNameUpload").val() }
]
]
});