我从谷歌硬盘获取25+ MB音频文件。
我需要使用html5代码播放此文件。
为此,我使用下面的代码。
<!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>
使用低于25 MB的代码文件可以正常播放。但如果它超过25 MB那么它就不会。请建议任何解决这一点的方法,我可以播放超过25 MB的文件。 谢谢。
答案 0 :(得分:0)
如果这是文件(我下载了,我得到25.7mb)来玩它为我工作。 我用过这段代码
<audio controls="controls">
<source src="https://docs.google.com/uc?export=download&id=0B1gAlyxjlHyaZldJTUZsTWwybGM">
</audio>
如果您有任何问题/疑问,请告诉我。 谢谢。