I am fetching 25+ MB Audio file from google drive.
I need to play this file using html5 code.
For this i am using below code.
<!DOCTYPE html>
<html>
<body>
<audio controls>
<source src="https://drive.google.com/file/d/0B1gAlyxjlHyaZldJTUZsTWwybGM/view">
Your browser does not support the audio element.
</audio>
</body>
</html>
Using this code files which are below 25 MB plays properly. But if it is more then 25 MB then it wont. Please suggest any way to solve this point where i can play files which are more then 25 MB. Thank you.