如何在音频标签 HTML 中播放大尺寸音频文件
how to play high size audio files in audio tag HTML
<audio src="/audioFiles/song.mp3" controls>
Your browser does not support the audio element.
</audio>
这是我用来播放音频文件的代码。它适用于小文件。有没有办法在 html 中播放大尺寸音频文件?
我已经安装了 sox 并使用此 shell exec
转换了大尺寸音频文件
shell_exec("/usr/local/bin/sox $oldVoice -r 8000 -c1 $newVoice -q -G");
正在播放!
<audio src="/audioFiles/song.mp3" controls>
Your browser does not support the audio element.
</audio>
这是我用来播放音频文件的代码。它适用于小文件。有没有办法在 html 中播放大尺寸音频文件?
我已经安装了 sox 并使用此 shell exec
转换了大尺寸音频文件shell_exec("/usr/local/bin/sox $oldVoice -r 8000 -c1 $newVoice -q -G");
正在播放!